Move vagrant stuff to extras/
[vpp.git] / extras / vagrant / run.sh
1 #!/bin/bash
2
3 # Figure out what system we are running on
4 if [ -f /etc/lsb-release ];then
5     . /etc/lsb-release
6 elif [ -f /etc/redhat-release ];then
7     yum install -y redhat-lsb
8     DISTRIB_ID=`lsb_release -si`
9     DISTRIB_RELEASE=`lsb_release -sr`
10     DISTRIB_CODENAME=`lsb_release -sc`
11     DISTRIB_DESCRIPTION=`lsb_release -sd`
12 fi
13
14 if [ $DISTRIB_ID == "CentOS" ]; then
15     # Install uio-pci-generic
16     modprobe uio_pci_generic
17 fi
18 echo "Starting VPP..."
19 if [ $DISTRIB_ID == "Ubuntu" ] && [ $DISTRIB_CODENAME = "trusty" ] ; then
20     start vpp
21 else
22     service vpp start
23 fi