summaryrefslogtreecommitdiffstats
path: root/jjb/tldk/include-raw-csit-tldk-functional-virl.sh
blob: b18290cdc82228482728fb9e20092ab5113c37ff (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-TLDK.sh ]
then
    # make sure that bootstrap-TLDK.sh is executable
    chmod +x bootstrap-TLDK.sh
    # run the script
    ./bootstrap-TLDK.sh
else
    echo 'ERROR: No bootstrap-TLDK.sh found'
    exit 1
fi

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