#!/bin/bash # Run from the directory containing this script cd `dirname $0` # Global return code (flags an error if any of the actions fail) global_rc=0 msg() { echo "INFO :: $*" >&2 } warn() { echo "WARN :: $*" >&2 } error() { echo "ERROR :: $*" >&2 exit 1 } usage() { cat >&2 <