2021-03-07 19:51:22 +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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2021-03-07 22:59:09 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=10
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2023-12-12 14:41:46 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2022-09-23 22:20:55 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=1
|
|
|
|
|
2023-12-12 14:41:46 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2022-09-23 22:20:55 +02:00
|
|
|
|
2023-12-12 14:41:46 +01:00
|
|
|
mkdir -p $data_dir
|
2022-09-23 22:20:55 +02:00
|
|
|
|
2021-03-07 19:51:22 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
2021-03-07 22:59:09 +01:00
|
|
|
ynh_script_progression --message="Restoring the Fail2Ban configuration..." --weight=2
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2022-02-04 01:28:16 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/fail2ban/jail.d/$app.conf"
|
|
|
|
ynh_restore_file --origin_path="/etc/fail2ban/filter.d/$app.conf"
|
2021-03-07 19:51:22 +01:00
|
|
|
ynh_systemd_action --action=restart --service_name=fail2ban
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
2022-09-23 21:57:38 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2021-03-07 19:51:22 +01:00
|
|
|
#=================================================
|
|
|
|
# REINSTALL COUCHDB
|
|
|
|
#=================================================
|
2021-03-07 22:59:09 +01:00
|
|
|
ynh_script_progression --message="Reinstalling couchdb..." --weight=40
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2023-12-12 15:25:59 +01:00
|
|
|
echo "\
|
|
|
|
couchdb couchdb/mode select standalone
|
2021-03-07 19:51:22 +01:00
|
|
|
couchdb couchdb/mode seen true
|
|
|
|
couchdb couchdb/bindaddress string 127.0.0.1
|
|
|
|
couchdb couchdb/bindaddress seen true
|
2023-12-12 15:25:59 +01:00
|
|
|
couchdb couchdb/cookie string $password
|
|
|
|
couchdb couchdb/adminpass password $password
|
2021-03-07 19:51:22 +01:00
|
|
|
couchdb couchdb/adminpass seen true
|
2023-12-12 15:25:59 +01:00
|
|
|
couchdb couchdb/adminpass_again password $password
|
2021-03-07 19:51:22 +01:00
|
|
|
couchdb couchdb/adminpass_again seen true" | debconf-set-selections
|
|
|
|
DEBIAN_FRONTEND=noninteractive # apt-get install -y --force-yes couchdb
|
|
|
|
|
2023-12-12 14:41:46 +01:00
|
|
|
ynh_install_extra_app_dependencies \
|
|
|
|
--repo="deb https://apache.jfrog.io/artifactory/couchdb-deb/ $(lsb_release -c -s) main" \
|
|
|
|
--key="https://couchdb.apache.org/repo/keys.asc" \
|
|
|
|
--package="couchdb"
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2023-12-12 14:41:46 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2021-05-19 01:53:08 +02:00
|
|
|
|
2023-12-12 14:41:46 +01:00
|
|
|
chmod 750 "$data_dir"
|
|
|
|
chmod -R o-rwx "$data_dir"
|
|
|
|
chown -R $app:www-data "$data_dir"
|
2022-09-23 22:20:55 +02:00
|
|
|
|
2021-03-07 19:51:22 +01:00
|
|
|
#=================================================
|
2022-02-04 01:28:16 +01:00
|
|
|
# RESTORE THE LOGROTATE CONFIGURATION
|
2021-03-07 19:51:22 +01:00
|
|
|
#=================================================
|
2022-09-23 21:57:38 +02:00
|
|
|
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2022-02-04 01:28:16 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
2021-03-07 19:51:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-02-04 01:28:16 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2021-03-07 19:51:22 +01:00
|
|
|
#=================================================
|
2022-02-04 01:28:16 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2022-02-04 01:28:16 +01:00
|
|
|
yunohost service add $app --description="Open-source document-oriented NoSQL database" --log="/var/log/$app/$app.log" --needs_exposed_ports "$port"
|
2021-03-07 19:51:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-03-07 22:59:09 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2021-03-07 19:51:22 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-07 22:59:09 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|