mirror of
https://github.com/YunoHost-Apps/shellinabox_ynh.git
synced 2024-09-03 20:26:12 +02:00
19 lines
No EOL
479 B
Bash
19 lines
No EOL
479 B
Bash
#!/bin/bash
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
set -e
|
|
|
|
# Source YNH helpers
|
|
. /usr/share/yunohost/helpers
|
|
|
|
app=${!#}
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
# Backup directory location for the app from where the script is executed and
|
|
# which will be compressed afterward
|
|
backup_dir=$YNH_APP_BACKUP_DIR
|
|
|
|
# Copy the conf files
|
|
sudo mkdir -p ./conf
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" ./conf/nginx.conf |