1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/helloworld_ynh.git synced 2024-09-03 19:15:57 +02:00

Branch to test the experimentation about autogenerating remove/backup

This commit is contained in:
Alexandre Aubin 2020-05-08 01:58:02 +02:00
parent d8c645bbec
commit 5cdeb66e50
2 changed files with 3 additions and 36 deletions

View file

@ -55,6 +55,9 @@ mkdir -p "$final_path"
echo "Hello world!" > $final_path/index.html echo "Hello world!" > $final_path/index.html
chown -R www-data: "$final_path" chown -R www-data: "$final_path"
ynh_declare_file_for_remove "sources" "$final_path"
ynh_declare_file_for_backup "sources" "$final_path"
#================================================= #=================================================
# NGINX CONFIGURATION # NGINX CONFIGURATION
#================================================= #=================================================

View file

@ -1,36 +0,0 @@
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get "$app" domain)
final_path=$(ynh_app_setting_get "$app" final_path)
#=================================================
# REMOVE THE MAIN DIR OF THE APP
#=================================================
ynh_script_progression --message="Removing app main directory..." --weight=1
# Remove sources
ynh_secure_remove --file="$final_path"
#=================================================
# REMOVE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Removing nginx web server configuration..." --weight=1
ynh_remove_nginx_config
ynh_systemd_action --action=reload --service_name=nginx
ynh_script_progression --message="Removal of $app completed" --last