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

102 lines
3.9 KiB
Text
Raw Normal View History

2017-11-01 20:57:58 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-01-13 17:19:46 +01:00
# Load common variables for all scripts.
2020-04-08 19:59:52 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
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
#=================================================
2019-05-26 17:00:09 +02:00
ynh_script_progression --message="Loading settings..."
2017-11-01 20:57:58 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-05-26 17:00:09 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2017-11-01 20:57:58 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2019-05-26 17:00:09 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2017-11-01 20:57:58 +01:00
test ! -d $final_path \
2020-05-02 00:51:00 +02:00
|| ynh_die --message="There is already a directory: $final_path "
2017-11-01 20:57:58 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2019-05-26 17:00:09 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2017-11-01 20:57:58 +01:00
2019-05-26 17:00:09 +02:00
ynh_restore_file --origin_path="$final_path"
2017-11-01 20:57:58 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2019-05-26 17:00:09 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=17
2017-11-01 20:57:58 +01:00
# 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
2019-05-26 17:00:09 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2017-11-01 20:57:58 +01:00
#=================================================
# RESTORE THE CRON FILE
#=================================================
2019-05-26 17:00:09 +02:00
ynh_restore_file --origin_path="/etc/cron.d/$app"
2017-11-01 20:57:58 +01:00
#=================================================
# 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"
2019-01-30 19:21:03 +01:00
echo "If you want to change the frequency of Archivist, have a look to the file /etc/cron.d/$app.
2017-12-16 23:05:44 +01:00
The configuration file of Archivist has been restored at $final_path/Backup_list.conf
2019-01-30 19:21:03 +01:00
Please read the __URL_TAG1__documentation__URL_TAG2__https://github.com/maniackcrudelis/archivist/blob/master/Configuration.md__URL_TAG3__ about the configuration of archivist for more information.
2017-12-16 23:05:44 +01:00
2019-01-30 19:21:03 +01:00
You can configure this app easily by using the experimental __URL_TAG1__config-panel feature__URL_TAG2__$admin_panel/config-panel__URL_TAG3__.
You can also find some specific actions for this app by using the experimental __URL_TAG1__action feature__URL_TAG2__$admin_panel/actions__URL_TAG3__.
2019-01-19 18:55:14 +01:00
2019-01-30 19:21:03 +01:00
If you're facing an issue or want to improve this app, please open a new issue in this __URL_TAG1__project__URL_TAG2__https://github.com/YunoHost-Apps/archivist_ynh__URL_TAG3__." > mail_to_send
2017-12-16 23:05:44 +01:00
2019-05-26 17:00:09 +02:00
ynh_send_readme_to_admin --app_message="mail_to_send" --recipients="root" --type=restore
2019-01-30 16:07:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-26 17:00:09 +02:00
ynh_script_progression --message="Restoration completed for $app" --last