mirror of
https://github.com/YunoHost-Apps/homeassistant_ynh.git
synced 2024-09-03 19:26:16 +02:00
33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
#!/bin/bash
|
|
# to test the functionnality :
|
|
# yunohost backup create -n "homeassistant-test" --apps homeassistant
|
|
# yunohost backup delete homeassistant-test
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# manage script failure
|
|
ynh_abort_if_errors
|
|
|
|
# retrieve arguments
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
domain=$(ynh_app_setting_get --app="$app" --key=domain)
|
|
|
|
# definie useful vars
|
|
final_path="/opt/yunohost/$app"
|
|
data_path="/home/yunohost.app/$app"
|
|
|
|
ynh_print_info --message="Storing the python version in settings..."
|
|
# store python version
|
|
python=$(cat "$final_path/bin/python3" --version | cut -d ' ' -f 2)
|
|
ynh_app_setting_set --app="$app" --key=python --value="$python"
|
|
|
|
# backup source & conf files
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
ynh_backup --src_path="$final_path"
|
|
ynh_backup --src_path="$data_path"
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
ynh_backup --src_path="/etc/sudoers.d/$app"
|
|
ynh_backup --src_path="/etc/systemd/system/$app.service"
|
|
ynh_backup --src_path="/etc/logrotate.d/$app"
|
|
|
|
ynh_print_info --message="Backup of $app completed"
|