1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/outline_ynh.git synced 2024-09-03 19:56:12 +02:00

Remove & Restore

This commit is contained in:
Limezy 2021-11-11 23:14:13 +07:00
parent c8bc14237c
commit 6d3b6e3d20
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ ynh_remove_logrotate
ynh_script_progression --message="Removing the PostgreSQL database..."
# Remove a database if it exists, along with the associated user
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
ynh_psql_remove_db --db_user=$db_name --db_name=$db_name
#=================================================
# REMOVE DEPENDENCIES

View file

@ -101,7 +101,7 @@ ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ st
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
ynh_psql_test_if_first_run
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_psql_setup_db --db_user=$db_name --db_name=$db_name
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
#=================================================