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.
This commit is contained in:
Bob Lantz
2014-09-29 16:30:24 -07:00
parent fa7edec7c8
commit ec26c7492d
+7
View File
@@ -582,6 +582,13 @@ net.ipv6.conf.lo.disable_ipv6 = 1' | sudo tee -a /etc/sysctl.conf > /dev/null
# Install NTP # Install NTP
$install ntp $install ntp
# Install vconfig for VLAN example
if [ "$DIST" = "Fedora" ]; then
$install vconfig
else
$install vlan
fi
# Set git to colorize everything. # Set git to colorize everything.
git config --global color.diff auto git config --global color.diff auto
git config --global color.status auto git config --global color.status auto