mirror of
https://github.com/YunoHost-Apps/adminer_ynh.git
synced 2024-09-03 18:06:06 +02:00
32391ef838
* 4.8.1 (#15) * 4.8.1 * Add template * Auto-update README * Only admin (#17) * Fix * Update install * Fix * fix * Update install * Fix * Update upgrade * fix * Update upgrade * Update upgrade * Update upgrade * Update upgrade * cleaning up * Update upgrade * Update check_process * 4.3 * Update upgrade * Update upgrade * cleaning up * Bump manifest version * Auto-update README * Add config * Auto-update README * Update manifest.json * Auto-update README * Auto-update README * Upgrade package (#21) * set client_max_body_size * Auto-update README Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Version 2 (#23) * v2 * Auto-update README * v2 * Auto-update README * Update tests.toml * Update manifest.toml * fix * Update manifest.toml * Auto-update README * Update upgrade --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> --------- Co-authored-by: Yunohost-Bot <> Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
#!/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
|
|
|
|
#=================================================
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
#=================================================
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
#=================================================
|
|
# STANDARD BACKUP STEPS
|
|
#=================================================
|
|
# BACKUP THE APP MAIN DIR
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="$install_dir"
|
|
|
|
#=================================================
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
#=================================================
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backup script completed for Adminer. (YunoHost will then actually copy those files to the archive)."
|