1
0
Fork 0
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:
Maniack Crudelis 2017-12-17 16:36:21 +01:00 committed by GitHub
commit b8f6c0f97e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,6 +30,15 @@ if [ "$is_public" = "Yes" ]; then
elif [ "$is_public" = "No" ]; then elif [ "$is_public" = "No" ]; then
ynh_app_setting_set $app is_public 0 ynh_app_setting_set $app is_public 0
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 fi
# If final_path doesn't exist, create it # If final_path doesn't exist, create it