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

# execute  nsh_sfc bootstrap script if it exists
if [ ! -e bootstrap-verify-perf-nsh_sfc.sh ]
then
    echo 'ERROR: No bootstrap-verify-perf-nsh_sfc.sh found'
    exit 1
fi

# make sure that bootstrap-verify-perf.sh is executable
chmod +x bootstrap-verify-perf-nsh_sfc.sh
# run the script
./bootstrap-verify-perf-nsh_sfc.sh

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