1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/etherpad_ynh.git synced 2024-09-03 18:36:10 +02:00

Update restore

This commit is contained in:
ericgaspar 2020-12-05 10:12:28 +01:00
parent ec320394c6
commit 6b1d4df3ca
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -58,21 +58,22 @@ ynh_script_progression --message="Restoring the app main directory..." --weight=
ynh_restore_file --origin_path="$final_path" ynh_restore_file --origin_path="$final_path"
#=================================================
# RESTORE THE POSTQRESQL DATABASE
#=================================================
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=2
ynh_psql_test_if_first_run
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
#================================================= #=================================================
# RECREATE THE DEDICATED USER # RECREATE THE DEDICATED USER
#================================================= #=================================================
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1 ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
# Create the dedicated user (if not existing) # Create the dedicated user (if not existing)
ynh_system_user_create --username=$app ynh_system_user_create --username=$app --home_dir=$final_path
#=================================================
# RESTORE USER RIGHTS
#=================================================
# Restore permissions on app files
chown -R $app: $final_path
chmod 600 $final_path/credentials.json
#================================================= #=================================================
# REINSTALL DEPENDENCIES # REINSTALL DEPENDENCIES
@ -86,13 +87,12 @@ ynh_install_app_dependencies $pkg_dependencies
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
#================================================= #=================================================
# RESTORE THE POSTQRESQL DATABASE # RESTORE USER RIGHTS
#================================================= #=================================================
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=2
ynh_psql_test_if_first_run # Restore permissions on app files
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd chown -R $app: $final_path
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name chmod 600 $final_path/credentials.json
#================================================= #=================================================
# RESTORE SYSTEMD # RESTORE SYSTEMD
@ -115,7 +115,7 @@ yunohost service add $app --description="Collaborative editor." --log="/var/log/
#================================================= #=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=8 ynh_script_progression --message="Starting a systemd service..." --weight=8
ynh_systemd_action --service_name=$app --action=restart --log_path="systemd" --line_match="Your Etherpad version is" --timeout="60" ynh_systemd_action --service_name=$app --action=restart --log_path="systemd" --line_match="Your Etherpad version is" --timeout="120"
#================================================= #=================================================
# GENERIC FINALIZATION # GENERIC FINALIZATION