1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/privatebin_ynh.git synced 2024-09-03 20:15:56 +02:00

Fix empty is_public

This commit is contained in:
Maniack Crudelis 2017-11-22 18:41:42 +01:00 committed by GitHub
parent a00e6930d0
commit 64b682cd8e
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
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