1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lxd_ynh.git synced 2024-09-03 19:45:53 +02:00
lxd_ynh/scripts/restore

63 lines
2.3 KiB
Text
Raw Normal View History

2021-03-01 14:53:57 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
ynh_restore_file --origin_path="/etc/systemd/system/$app.socket"
systemctl enable "$app.service" --quiet
yunohost service add "$app" --log="/var/log/$app/$app.log"
ynh_restore_file --origin_path="/etc/dnsmasq.d/lxd"
systemctl restart dnsmasq
ynh_restore_file --origin_path="/etc/ld.so.conf.d/$app.conf"
ldconfig
_ynh_set_subuid_subgid
2021-03-01 14:53:57 +01:00
#=================================================
2021-03-02 14:58:33 +01:00
# RESTORE VARIOUS FILES
2021-03-01 14:53:57 +01:00
#=================================================
2022-07-27 20:53:30 +02:00
ynh_script_progression --message="Restoring various files..."
2021-03-01 14:53:57 +01:00
2021-03-02 15:44:51 +01:00
ynh_restore_file --origin_path="/var/log/$app/"
2021-03-02 14:58:33 +01:00
ynh_restore_file --origin_path="/usr/local/lib/$app/"
2021-03-01 14:53:57 +01:00
2022-01-14 15:43:42 +01:00
ynh_restore_file --origin_path="/usr/local/bin/fuidshift"
2021-03-02 14:58:33 +01:00
ynh_restore_file --origin_path="/usr/local/bin/lxc"
ynh_restore_file --origin_path="/usr/local/bin/lxc-to-lxd"
2022-01-14 15:43:42 +01:00
ynh_restore_file --origin_path="/usr/local/bin/lxd"
ynh_restore_file --origin_path="/usr/local/bin/lxd-agent"
ynh_restore_file --origin_path="/usr/local/bin/lxd-benchmark"
ynh_restore_file --origin_path="/usr/local/bin/lxd-migrate"
ynh_restore_file --origin_path="/usr/local/bin/lxd-user"
2021-03-16 14:10:32 +01:00
ynh_restore_file --origin_path="/etc/bash_completion.d/lxd-client"
2021-03-01 14:53:57 +01:00
#=================================================
2021-03-02 14:58:33 +01:00
# START SYSTEMD SERVICE
2021-03-01 14:53:57 +01:00
#=================================================
2021-03-02 15:59:40 +01:00
ynh_script_progression --message="Starting a systemd service..."
2021-03-01 14:53:57 +01:00
2024-02-01 14:51:55 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2021-03-01 14:53:57 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-03-02 15:59:40 +01:00
ynh_script_progression --message="Restoration completed for $app" --last