mirror of
https://github.com/YunoHost-Apps/lstu_ynh.git
synced 2024-09-03 19:36:12 +02:00
27 lines
749 B
Bash
27 lines
749 B
Bash
#!/bin/bash
|
|
# vim:set noexpandtab:
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
set -eu
|
|
|
|
# Source app helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Get multi-instances specific variables
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
# Copy the app files
|
|
final_path="/var/www/${app}"
|
|
ynh_backup "${final_path}" "sources" 1
|
|
|
|
# Copy the nginx conf files
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
|
|
|
|
# Copy the lstu conf file
|
|
ynh_backup "${final_path}/lstu.conf" "lstu.conf"
|
|
ynh_backup "/etc/systemd/system/lstu.service" "systemd_lstu.service"
|
|
ynh_backup "/etc/logrotate.d/${app}" "logrotate_lstu"
|
|
ynh_backup "/var/log/${app}/production.log" "production.log"
|