mirror of
https://github.com/YunoHost-Apps/zerobin_ynh.git
synced 2024-09-03 18:06:01 +02:00
Merge pull request #25 from YunoHost-Apps/fix_is_public
Fix empty is_public
This commit is contained in:
commit
b8f6c0f97e
1 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,15 @@ if [ "$is_public" = "Yes" ]; then
|
|||
elif [ "$is_public" = "No" ]; then
|
||||
ynh_app_setting_set $app is_public 0
|
||||
is_public=0
|
||||
elif [ -z "$is_public" ]; then
|
||||
if grep --quiet "unprotected_uris" "/etc/yunohost/apps/$app/settings.yml"
|
||||
then
|
||||
ynh_app_setting_set $app is_public 1
|
||||
is_public=1
|
||||
else
|
||||
ynh_app_setting_set $app is_public 0
|
||||
is_public=0
|
||||
fi
|
||||
fi
|
||||
|
||||
# If final_path doesn't exist, create it
|
||||
|
|
Loading…
Reference in a new issue