1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/archivist_ynh.git synced 2024-09-03 18:15:55 +02:00
archivist_ynh/scripts/restore

103 lines
3.7 KiB
Text
Raw Normal View History

2017-11-01 20:57:58 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-07-13 17:31:45 +02:00
source ../settings/scripts/_common.sh
2017-11-01 20:57:58 +01:00
source /usr/share/yunohost/helpers
2019-01-13 17:19:46 +01:00
# Load common variables for all scripts.
source ../settings/scripts/_variables
2017-11-01 20:57:58 +01:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
final_path=$(ynh_app_setting_get $app final_path)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
test ! -d $final_path \
|| ynh_die "There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_restore_file "$final_path"
2018-07-21 19:39:31 +02:00
#=================================================
# STRETCH COMPATIBILITY
#=================================================
if is_stretch
then
ynh_replace_string "yunohost backup create --ignore-apps" "yunohost backup create" "$final_path/archivist.sh"
ynh_replace_string "yunohost backup create --ignore-system" "yunohost backup create" "$final_path/archivist.sh"
fi
2017-11-01 20:57:58 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
# Valid the fucking debconf message
# To find this, install the package, install also debconf-utils
# Then use `debconf-get-selections | grep package`
echo "encfs encfs/security-information boolean true" | debconf-set-selections
2019-01-13 17:19:46 +01:00
ynh_install_app_dependencies $app_depencencies
2017-11-01 20:57:58 +01:00
#=================================================
2019-01-13 17:27:09 +01:00
# RESTORE THE LOGROTATE CONFIGURATION
2017-11-01 20:57:58 +01:00
#=================================================
mkdir -p /var/log/$app
ynh_restore_file "/etc/logrotate.d/$app"
#=================================================
# RESTORE THE CRON FILE
#=================================================
ynh_restore_file "/etc/cron.d/$app"
#=================================================
# RECREATE DIRECTORIES
#=================================================
2017-11-03 01:11:50 +01:00
mkdir -p "/home/yunohost.app/${app}/backup"
2017-12-16 23:05:44 +01:00
#=================================================
# SEND A README FOR THE ADMIN
#=================================================
2019-01-19 18:55:14 +01:00
# Get main domain and buid the url of the admin panel of the app.
admin_panel="https://$(grep portal_domain /etc/ssowat/conf.json | cut -d'"' -f4)/yunohost/admin/#/apps/$app"
2017-12-16 23:05:44 +01:00
message="If you want to change the frequency of Archivist, have a look to the file /etc/cron.d/$app.
The configuration file of Archivist has been restored at $final_path/Backup_list.conf
2019-01-13 17:27:09 +01:00
Please read the documentation (https://github.com/maniackcrudelis/archivist/blob/master/Configuration.md) about the configuration of archivist for more information.
2017-12-16 23:05:44 +01:00
2019-01-19 18:55:14 +01:00
You can configure this app easily by using the experimental config-panel feature: $admin_panel/config-panel.
You can also find some specific actions for this app by using the experimental action feature: $admin_panel/actions.
2019-01-13 17:27:09 +01:00
If you're facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/archivist_ynh"
2017-12-16 23:05:44 +01:00
2019-01-19 18:55:14 +01:00
ynh_send_readme_to_admin --app_message="$message" --recipients="root" --type="restore"