1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/radicale_ynh.git synced 2024-09-03 20:16:14 +02:00

Fix ssowat conflict

This commit is contained in:
maniack 2017-07-01 16:42:57 +02:00
parent 63aa651a67
commit f6d16dd700
2 changed files with 4 additions and 2 deletions

View file

@ -237,7 +237,7 @@ then # /infcloud vient se rajouter à l'adresse de radicale pour y être associ
ynh_app_setting_set $app path $path_url/infcloud # Remplace radicale par InfCloud dans le portail Yunohost ynh_app_setting_set $app path $path_url/infcloud # Remplace radicale par InfCloud dans le portail Yunohost
ynh_app_setting_set $app protected_uris "/" # Protège l'accès à infcloud ynh_app_setting_set $app protected_uris "/" # Protège l'accès à infcloud
domain_regex=$(echo "$domain" | sed 's@-@.@g') domain_regex=$(echo "$domain" | sed 's@-@.@g')
ynh_app_setting_set $app unprotected_regex "$domain_regex$path_url" # Radicale est accessible librement (pour l'accès distant aux ressources) ynh_app_setting_set $app skipped_regex "$domain_regex$path_url" # Radicale est accessible librement (pour l'accès distant aux ressources)
else # Si seul radicale est installé. else # Si seul radicale est installé.
ynh_app_setting_set $app unprotected_uris "/" # Radicale est accessible librement (pour l'accès distant aux ressources) ynh_app_setting_set $app unprotected_uris "/" # Radicale est accessible librement (pour l'accès distant aux ressources)
fi fi

View file

@ -27,6 +27,8 @@ version=$(ynh_app_setting_get $app version)
# FIX OLD THINGS # FIX OLD THINGS
#================================================= #=================================================
ynh_app_setting_delete $app unprotected_regex
if [ -d /usr/local/radicale ] if [ -d /usr/local/radicale ]
then then
sudo mkdir -p /opt/yunohost sudo mkdir -p /opt/yunohost
@ -240,7 +242,7 @@ then # /infcloud vient se rajouter à l'adresse de radicale pour y être associ
ynh_app_setting_set $app path $path_url/infcloud # Remplace radicale par InfCloud dans le portail Yunohost ynh_app_setting_set $app path $path_url/infcloud # Remplace radicale par InfCloud dans le portail Yunohost
ynh_app_setting_set $app protected_uris "/" # Protège l'accès à infcloud ynh_app_setting_set $app protected_uris "/" # Protège l'accès à infcloud
domain_regex=$(echo "$domain" | sed 's@-@.@g') domain_regex=$(echo "$domain" | sed 's@-@.@g')
ynh_app_setting_set $app unprotected_regex "$domain_regex$path_url" # Radicale est accessible librement (pour l'accès distant aux ressources) ynh_app_setting_set $app skipped_regex "$domain_regex$path_url" # Radicale est accessible librement (pour l'accès distant aux ressources)
else # Si seul radicale est installé. else # Si seul radicale est installé.
ynh_app_setting_set $app unprotected_uris "/" # Radicale est accessible librement (pour l'accès distant aux ressources) ynh_app_setting_set $app unprotected_uris "/" # Radicale est accessible librement (pour l'accès distant aux ressources)
fi fi