1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/castopod_ynh.git synced 2024-09-03 18:16:14 +02:00
This commit is contained in:
Éric Gaspar 2023-10-23 23:28:31 +02:00
parent bae364079d
commit f54c3d2591
6 changed files with 0 additions and 30 deletions

View file

@ -18,9 +18,6 @@ media.baseURL="https://__DOMAIN__"
admin.gateway="cp-admin"
auth.gateway="cp-auth"
#media.root="media"
#media.storage="__DATA_DIR__"
#--------------------------------------------------------------------
# Database configuration
#--------------------------------------------------------------------

View file

@ -51,8 +51,6 @@ ram.runtime = "50M"
[resources.install_dir]
[resources.data_dir]
[resources.permissions]
main.url = "/"

View file

@ -20,13 +20,6 @@ ynh_print_info --message="Declaring files to be backed up..."
ynh_backup --src_path="$install_dir"
#=================================================
# BACKUP THE DATA DIR
#=================================================
# Only relevant if there is a "data_dir" resource for this app
ynh_backup --src_path="$data_dir" --is_big
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================

View file

@ -16,7 +16,6 @@ source /usr/share/yunohost/helpers
fpm_footprint="low"
fpm_free_footprint=0
fpm_usage="low"
email=$(ynh_user_get_info --username=$admin --key=mail)
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint

View file

@ -9,13 +9,6 @@
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
# ynh_script_progression --message="Loading installation settings..." --weight=1
# redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
#=================================================
# REMOVE THE REDIS DATABASE
#=================================================

View file

@ -20,16 +20,6 @@ ynh_restore_file --origin_path="$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
#=================================================
# RESTORE THE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Restoring the data directory..." --weight=1
ynh_restore_file --origin_path="$data_dir" --not_mandatory
# (Same as for install dir)
chown -R $app:www-data "$data_dir"
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================