Allow app volumes to be symlinked
The initial plan was to make app volumes to be set using a database field but this makes the app backups non-portable. It also complicates things wrt to app and server restores. For now, ignore the problem and let them be symlinked. Fixes #394
This commit is contained in:
@@ -17,10 +17,17 @@ if [[ "$1" == "--check" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
appid="$1"
|
||||
rmdir="$2"
|
||||
|
||||
if [[ "${BOX_ENV}" == "cloudron" ]]; then
|
||||
readonly app_data_dir="${HOME}/appsdata/$1"
|
||||
readonly app_data_dir="${HOME}/appsdata/${appid}"
|
||||
else
|
||||
readonly app_data_dir="${HOME}/.cloudron_test/appsdata/${appid}"
|
||||
fi
|
||||
|
||||
if [[ "${rmdir}" == "true" ]]; then
|
||||
rm -rf "${app_data_dir}"
|
||||
else
|
||||
readonly app_data_dir="${HOME}/.cloudron_test/appsdata/$1"
|
||||
rm -rf "${app_data_dir}"
|
||||
find "${app_data_dir}" -mindepth 1 -delete
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user