diff --git a/scripts/upgrade b/scripts/upgrade index b077df9..ebec522 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -23,6 +23,7 @@ is_public=$(ynh_app_setting_get $app is_public) final_path=$(ynh_app_setting_get $app final_path) db_name=$(ynh_app_setting_get $app db_name) db_pwd=$(ynh_app_setting_get $app mysqlpwd) +password=$(ynh_app_setting_get $app password) master_key=$(ynh_app_setting_get $app master_key) #================================================= @@ -51,6 +52,11 @@ if [ -z $final_path ]; then ynh_app_setting_set $app final_path $final_path fi +# If password exists, remove it +if [ ! -z $password ]; then + ynh_app_setting_delete $app password +fi + #================================================= # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP #=================================================