Skip to content
Snippets Groups Projects
Commit ec26c749 authored by Bob Lantz's avatar Bob Lantz
Browse files

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.
parent fa7edec7
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment