list ldap as 0.0.25 change

This commit is contained in:
Girish Ramakrishnan
2015-08-04 16:29:49 -07:00
commit d3fb244cef
23 changed files with 4357 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
# This script is called once at the end of a cloudrons lifetime
set -eu -o pipefail
readonly BOX_SRC_DIR=/home/yellowtent/box
arg_data=""
args=$(getopt -o "" -l "data:" -n "$0" -- "$@")
eval set -- "${args}"
while true; do
case "$1" in
--data) arg_data="$2";;
--) break;;
*) echo "Unknown option $1"; exit 1;;
esac
shift 2
done
echo "Setting up splash screen"
"${BOX_SRC_DIR}/setup/splashpage.sh" --retire --data "${arg_data}" # show splash
"${BOX_SRC_DIR}/setup/stop.sh" # stop the cloudron code