mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
# Récupère les infos de l'application.
|
|
ynh_version=$(sudo yunohost -v | grep "moulinette:" | cut -d' ' -f2 | cut -d'.' -f1,2)
|
|
if [ $ynh_version = "2.4" ]; then
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
else
|
|
app=lutim
|
|
fi
|
|
final_path=$(sudo yunohost app setting $app final_path)
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
codename=$(sudo yunohost app setting $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
|