1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/svgedit_ynh.git synced 2024-09-03 20:26:24 +02:00
svgedit_ynh/scripts/backup

18 lines
415 B
Text
Raw Normal View History

2017-03-17 12:10:31 +01:00
#!/bin/bash
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers
source /usr/share/yunohost/helpers
2018-03-19 03:56:00 +01:00
ynh_abort_if_errors
2017-03-17 12:10:31 +01:00
# Backup sources & data
# Note: the last argument is where to save this path, see the restore script.
2018-03-19 03:56:00 +01:00
ynh_backup "/var/www/${app}"
2017-03-17 12:10:31 +01:00
# Copy NGINX configuration
domain=$(ynh_app_setting_get "$app" domain)
2018-03-19 03:56:00 +01:00
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf"