
#!/bin/sh
# File 	: create_s3-env.sh
# By	: Maarten.deBoer@Atos.net, 251202
# Subject	: Script with all (automation) script for S3 env

if [ "${1}" = "" ]; then
  echo "No FILTER. Exiting ..."
  exit 4
else
  FILTER="${1}"
fi

clear
echo "`date` Started."
echo "  FILTER=${FILTER}"
sleep 1

sh ./noc_vserver_update.sh ${FILTER}

sh ./noc_certificate_create.sh ${FILTER}

sh ./noc_object-server_update.sh ${FILTER}

sh ./noc_object-user_update.sh ${FILTER}

sh ./noc_volume_update.sh ${FILTER}

sh ./noc_qtree_update.sh ${FILTER}

sh ./noc_bucket_update.sh ${FILTER}

echo "`date` Finished."
exit 0

