diff --git a/hooks/post_app_addaccess b/hooks/post_app_addaccess index 662067d..5695c0e 100644 --- a/hooks/post_app_addaccess +++ b/hooks/post_app_addaccess @@ -8,16 +8,16 @@ app=$1 install_dir=/var/www/chatonsinfos/ service_path=${install_dir}public/${app}.properties -local groups_added=$4 -local app_info="$(yunohost app info $app --full --json)" +groups_added=$4 +app_info="$(yunohost app info $app --full --json)" get_info() { echo $app_info | jq -r ".$1" } if [[ "$groups_added" == *"visitors"* ]] then registration=$(ynh_read_var_in_file --file="$service_path" --key="service.registration") - local ldap="$(get_info 'manifest.integration.ldap')" - local sso="$(get_info 'manifest.integration.sso')" + ldap="$(get_info 'manifest.integration.ldap')" + sso="$(get_info 'manifest.integration.sso')" if [[ "$registration" != "None" && "$registration" != "Free" ]] then if [[ "$ldap" == "not_relevant" && "$sso" == "not_relevant" ]] diff --git a/hooks/post_app_removeaccess b/hooks/post_app_removeaccess index 3360b8c..7933110 100644 --- a/hooks/post_app_removeaccess +++ b/hooks/post_app_removeaccess @@ -8,16 +8,16 @@ app=$1 install_dir=/var/www/chatonsinfos/ service_path=${install_dir}public/${app}.properties -local groups_removed=$4 -local app_info="$(yunohost app info $app --full --json)" +groups_removed=$4 +app_info="$(yunohost app info $app --full --json)" get_info() { echo $app_info | jq -r ".$1" } if [[ "$groups_removed" == *"visitors"* ]] then registration=$(ynh_read_var_in_file --file="$service_path" --key="service.registration") - local ldap="$(get_info 'manifest.integration.ldap')" - local sso="$(get_info 'manifest.integration.sso')" + ldap="$(get_info 'manifest.integration.ldap')" + sso="$(get_info 'manifest.integration.sso')" if [[ "$registration" != "Member" && "$registration" != "Client" ]] then ynh_write_var_in_file --file="$service_path" --key="service.registration" --value="Member"