1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/aeneria_ynh.git synced 2024-09-03 18:06:15 +02:00

Fix hooks

This commit is contained in:
tituspijean 2023-04-20 22:50:00 +02:00
parent 7934b9a5e9
commit 8159bad250
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720
4 changed files with 22 additions and 0 deletions

View file

@ -1,6 +1,9 @@
#!/bin/bash #!/bin/bash
app=$1 app=$1
# Run only if we are altering aeneria's permissions
[[ "$app" != "__APP__" ]] && exit 0
# Source YunoHost helpers # Source YunoHost helpers
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
source /etc/yunohost/apps/$app/scripts/_common.sh source /etc/yunohost/apps/$app/scripts/_common.sh

View file

@ -1,6 +1,9 @@
#!/bin/bash #!/bin/bash
app=$1 app=$1
# Run only if we are altering aeneria's permissions
[[ "$app" != "__APP__" ]] && exit 0
# Source YunoHost helpers # Source YunoHost helpers
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
source /etc/yunohost/apps/$app/scripts/_common.sh source /etc/yunohost/apps/$app/scripts/_common.sh

View file

@ -149,6 +149,14 @@ ynh_add_config --template="../conf/aeneria.cron" --destination="/etc/cron.d/$app
chown root: "/etc/cron.d/$app" chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app" chmod 644 "/etc/cron.d/$app"
#=================================================
# ADAPT HOOK FOR AENERIA INSTANCE
#=================================================
ynh_script_progression --message="Adapting hooks..." --weight=1
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_app_addaccess"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_app_removeaccess"
#================================================= #=================================================
# SETUP SSOWAT # SETUP SSOWAT
#================================================= #=================================================

View file

@ -188,6 +188,14 @@ ynh_add_config --template="../conf/aeneria.cron" --destination="/etc/cron.d/$app
chown root: "/etc/cron.d/$app" chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app" chmod 644 "/etc/cron.d/$app"
#=================================================
# ADAPT HOOK FOR AENERIA INSTANCE
#=================================================
ynh_script_progression --message="Adapting hooks..." --weight=1
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_app_addaccess"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../hooks/post_app_removeaccess"
#================================================= #=================================================
# RELOAD NGINX # RELOAD NGINX
#================================================= #=================================================