summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-hc2vpp-verify-func.sh
blob: 5237e983866aae5d98cf60e0065e6a0378f3f1f6 (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-hc2vpp-integration.sh ]]
then
    echo 'ERROR: No bootstrap-hc2vpp-integration.sh found'
    exit 1
else
    # make sure that bootstrap.sh is executable
    chmod +x bootstrap-hc2vpp-integration.sh
    # run the script
    ./bootstrap-hc2vpp-integration.sh ${STREAM} ${OS}
fi

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