#!/bin/bash# execute csit bootstrap script if it existsif[ -e bootstrap-multilink.sh ]then# make sure that bootstrap.sh is executable
chmod +x bootstrap-multilink.sh
# run the script
./bootstrap-multilink.sh
elseecho'ERROR: No bootstrap-multilink.sh found'exit1fi# vim: ts=4 ts=4 sts=4 et :