3 # Figure out what system we are running on
4 if [ "$(uname)" <> "Darwin" ]; then
5 OS_ID=$(grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
6 OS_VERSION_ID=$(grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
9 if [ "$OS_ID" == "ubuntu" ]; then
10 $OS_CODENAME=$UBUNTU_CODENAME
13 if [ "$OS_ID" == "centos" ] || [ "$OS_ID" == "opensuse" ]; then
14 # Install uio-pci-generic
15 sudo -E modprobe uio_pci_generic
18 echo "Starting VPP..."
19 if [ "$OS_ID" == "ubuntu" ] && [ "$OS_CODENAME" == "trusty" ] ; then
22 sudo -E service vpp start