From ec26c7492d61e2d4d2b25ae7e326bd3c9a9a67ec Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Mon, 29 Sep 2014 16:30:24 -0700 Subject: [PATCH] Install vconfig in VM for VLAN example This should help with #393 although it doesn't solve the root issue of the example failing silently when vconfig is missing. --- util/install.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/util/install.sh b/util/install.sh index 99162ae..0406d05 100755 --- a/util/install.sh +++ b/util/install.sh @@ -582,6 +582,13 @@ net.ipv6.conf.lo.disable_ipv6 = 1' | sudo tee -a /etc/sysctl.conf > /dev/null # Install NTP $install ntp + # Install vconfig for VLAN example + if [ "$DIST" = "Fedora" ]; then + $install vconfig + else + $install vlan + fi + # Set git to colorize everything. git config --global color.diff auto git config --global color.status auto