1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/concrete5_ynh.git synced 2024-09-03 18:25:54 +02:00

Update install

This commit is contained in:
frju365 2017-03-02 14:08:06 +01:00 committed by GitHub
parent ef53caf02b
commit 3133415763

View file

@ -148,13 +148,10 @@ sudo chmod 644 $nginxconf
#================================================= #=================================================
# Make app private if necessary # Make app private if necessary
ynh_app_setting_set $app is_public "$is_public" ynh_app_setting_set "$app" is_public "$is_public"
if [ $is_public -eq 0 ]; if [ "$is_public" = "Yes" ];
then then
# Retire l'autorisation d'accès de la page d'install. ynh_app_setting_set "$app" unprotected_uris "/"
ynh_app_setting_delete $app unprotected_uris
# Rend la page d'actualisation accessible pour le script cron.
ynh_app_setting_get $app skipped_uris "/action.php"
fi fi
#================================================= #=================================================