Merge " nsh_sfc functional and performance jobs. - functional cases are submit...
[ci-management.git] / jjb / nsh_sfc / include-raw-csit-nsh_sfc-functional-virl.sh
1 #!/bin/bash
2
3 # execute nsh_sfc bootstrap script if it exists
4 if [ -e bootstrap-nsh_sfc-functional-virl.sh ]
5 then
6     # make sure that bootstrap-nsh_sfc-functional-virl.sh is executable
7     chmod +x bootstrap-nsh_sfc-functional-virl.sh
8     # run the script
9     ./bootstrap-nsh_sfc-functional-virl.sh
10 else
11     echo 'ERROR: No bootstrap-nsh_sfc-functional-virl.sh found'
12     exit 1
13 fi
14
15 # vim: ts=4 ts=4 sts=4 et :