1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/focalboard_ynh.git synced 2024-09-03 18:36:19 +02:00
This commit is contained in:
ericgaspar 2021-06-17 23:35:50 +02:00
parent 00d896490c
commit 62412d3980
4 changed files with 10 additions and 1 deletions

View file

@ -3,6 +3,7 @@
#=================================================
# COMMON VARIABLES
#=================================================
# dependencies used by the app
pkg_dependencies="postgresql postgresql-contrib"

View file

@ -29,6 +29,7 @@ ynh_print_info --message="Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
files_path=$(ynh_app_setting_get --app=$app --key=files_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
@ -42,6 +43,7 @@ ynh_print_info --message="Declaring files to be backed up..."
#=================================================
ynh_backup --src_path="$final_path"
ynh_backup --src_path="$files_path"
#=================================================
# BACKUP THE NGINX CONFIGURATION

View file

@ -106,7 +106,7 @@ files_path=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=files_path --value=$files_path
mkdir -p $files_path/files
chown -R $app:$app $files_path
chown -R $app:www-data $files_path
chmod -R 755 $files_path
#=================================================

View file

@ -31,6 +31,7 @@ app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
files_path=$(ynh_app_setting_get --app=$app --key=files_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
@ -72,6 +73,11 @@ chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
ynh_restore_file --origin_path="$files_path"
chown -R $app:www-data $files_path
chmod -R 755 $files_path
#=================================================
# SPECIFIC RESTORATION
#=================================================