From 15f2898f26b97c2248d319544076d881540ba010 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Mon, 30 Mar 2015 16:26:05 -0700 Subject: [PATCH] Add a space after ipv6.disable=1 so as not to break text boot --- util/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/install.sh b/util/install.sh index 210c8df..34eda34 100755 --- a/util/install.sh +++ b/util/install.sh @@ -583,7 +583,7 @@ net.ipv6.conf.lo.disable_ipv6 = 1' | sudo tee -a /etc/sysctl.conf > /dev/null # Since the above doesn't disable neighbor discovery, also do this: if ! grep 'ipv6.disable' /etc/default/grub; then sudo sed -i -e \ - 's/GRUB_CMDLINE_LINUX_DEFAULT="/GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1/' \ + 's/GRUB_CMDLINE_LINUX_DEFAULT="/GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 /' \ /etc/default/grub sudo update-grub fi