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