mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
# Récupère les infos de l'application.
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Source app helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
codename=$(ynh_app_setting_get $app codename)
|
|
|
|
# The parameter $1 is the backup directory location
|
|
# which will be compressed afterward
|
|
backup_dir=$1/apps/$app
|
|
sudo mkdir -p "$backup_dir"
|
|
|
|
# Backup sources & data
|
|
sudo cp -a $final_path/. $backup_dir/sources
|
|
|
|
# Copy Nginx and YunoHost parameters to make the script "standalone"
|
|
sudo cp -a /etc/yunohost/apps/$app/. $backup_dir/yunohost
|
|
sudo cp -a /etc/nginx/conf.d/$domain.d/$app.conf $backup_dir/nginx.conf
|
|
|
|
if [ "$codename" = "wheezy" ]
|
|
then
|
|
# Copie des fichiers du script init
|
|
sudo cp -a /etc/init.d/lutim $backup_dir/init.d_lutim
|
|
sudo cp -a /etc/default/lutim $backup_dir/default_lutim
|
|
else
|
|
# Copie des fichiers du script systemd
|
|
sudo cp -a /etc/systemd/system/lutim.service $backup_dir/
|
|
fi
|
|
|
|
# Copie du fichier du cron
|
|
sudo cp -a /etc/cron.d/$app $backup_dir/cron_$app
|
|
|
|
# Copie la configuration de logrotate
|
|
sudo cp -a /etc/logrotate.d/$app $backup_dir/logrotate
|