Files
cloudron-box/src/scripts/rmvolume.sh
T

31 lines
510 B
Bash
Raw Normal View History

#!/bin/bash
set -eu -o pipefail
if [[ ${EUID} -ne 0 ]]; then
echo "This script should be run as root." > /dev/stderr
exit 1
fi
if [[ $# -eq 0 ]]; then
echo "No arguments supplied"
exit 1
fi
if [[ "$1" == "--check" ]]; then
echo "OK"
exit 0
fi
2017-09-07 15:43:57 -07:00
appid="$1"
subdir="$2"
2017-09-07 15:43:57 -07:00
2015-07-24 01:42:28 -07:00
if [[ "${BOX_ENV}" == "cloudron" ]]; then
readonly volume_dir="${HOME}/appsdata/${appid}/${subdir}"
else
readonly volume_dir="${HOME}/.cloudron_test/appsdata/${appid}/${subdir}"
2017-09-07 15:43:57 -07:00
fi
rm -rf "${volume_dir}"
2017-09-07 20:10:07 -07:00