| 1234567891011121314151617181920212223 | #!/bin/bashSCENARIO=$1ACTION=${2-install}dir=scenarios/${SCENARIO}if [ -z "$SCENARIO" ] ; then  SCENARIO=default  dir=.fiif [ ! -d "$dir" ] ; then  echo "Requested scenario '${SCENARIO}' does not exist."  exit 1fiecho "Switch to ${SCENARIO} scenario"set -excomposer -n --working-dir=$dir ${ACTION} --prefer-dist --no-scriptscomposer -n --working-dir=$dir info
 |