mirror of
https://github.com/YunoHost-Apps/dotclear2_ynh.git
synced 2024-09-03 18:26:29 +02:00
Fix upgrade
This commit is contained in:
parent
c3b72e20b4
commit
bed14014e7
1 changed files with 8 additions and 5 deletions
|
@ -35,11 +35,6 @@ protected_uris=$(ynh_app_setting_get $app protected_uris)
|
|||
#=================================================
|
||||
ynh_print_info "Ensuring downward compatibility..."
|
||||
|
||||
# Delete is_public if it exists
|
||||
if [ ! -z $is_public ]; then
|
||||
ynh_app_setting_delete --app=$app --key=is_public
|
||||
fi
|
||||
|
||||
# If db_name doesn't exist, create it
|
||||
if [ -z $db_name ]; then
|
||||
db_name=$(ynh_sanitize_dbid $app)
|
||||
|
@ -72,6 +67,14 @@ if [ ! -z $password ]; then
|
|||
ynh_app_setting_delete $app password
|
||||
fi
|
||||
|
||||
# Delete is_public if it exists
|
||||
if [ ! -z $is_public ]; then
|
||||
if [ "$is_public" = "1" ]; then
|
||||
ynh_permission_update --permission "main" --add "visitors"
|
||||
fi
|
||||
ynh_app_setting_delete --app=$app --key=is_public
|
||||
fi
|
||||
|
||||
#=================================================
|
||||
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue