summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-hc2vpp-functional-virl.sh
blob: 8c2fa976522ffe7a2d88dcf87b66d153ce5aa335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# execute csit bootstrap script if it exists
if [ ! -e bootstrap-vpp-honeycomb.sh ]
then
    echo 'ERROR: No bootstrap-vpp-honeycomb.sh found'
    exit 1
else
    # make sure that bootstrap.sh is executable
    chmod +x bootstrap-vpp-honeycomb.sh
    # run the script
    ./bootstrap-vpp-honeycomb.sh
fi

# vim: ts=4 ts=4 sts=4 et :