Fix backup core only

This commit is contained in:
Josué Tille
2020-12-07 17:04:52 +01:00
parent a9d9989b49
commit adcb5ba66c
2 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,12 @@ ynh_user_exists "$admin" \
# Check Final Path availability
test ! -e "$final_path" || ynh_die --message "This path already contains a folder"
if [ -e "$DATADIR" ]; then
old_data_dir_path="$DATADIR$(date '+%Y%m%d.%H%M%S')"
ynh_print_warn "A data directory already exist. Data was renamed to $old_data_dir_path"
mv "$DATADIR" "$old_data_dir_path"
fi
# Generate random password and key
ynh_script_progression --message="Defining db password and key..."
dbpass=$(ynh_string_random)