1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/joomla_ynh.git synced 2024-09-03 19:26:34 +02:00
joomla_ynh/scripts/backup
yalh76 47073a10bc
Testing (#11)
* php 8.0

* dbprefix not empty

* php fix

* Update install

* Update _common.sh

* Update manifest.json

* database prefix must not be empty

dbprefix = '';               // Any random string ending with _

* Update install

* Update install

sill getting
The MySQLi extension is not available

* Update install

* Phpversion + php dependencies

* Update php-fpm.conf

upload_max_filesize
post_max_size
Temp folder

* Update _common.sh

Php8 + deps

* Update manifest.json

Remove php choice

* Update install

YNH_PHP_VERSION

* Update install

* Update configuration.php

* Update install

Setting dbprefix to ynh_
Should be random string

* Update configuration.php

Setting dbprefix to ynh

* Adding an upgrade test

* Upgrade version

* not needed

* Cleanup

* Updating php dependencies

* Cleanup

* add /var/log

* Update dependencies

* adding db_prefix

* missing db_prefix during upgrade

* Adding secret

* better way to create the first account

* adding steps to fix dbprefix update

* Dbprefix

* Delete fix1.jpg

* Delete fix2.jpg

* Delete fix3.jpg

* Delete fix4.jpg

* Delete fix5.jpg

* Delete dbprefix

* Create dbpresfix

* Add files via upload

* Add files via upload

* Update DISCLAIMER.md

dbprefix update howto fix

* Adding screenshot

* Update _common.sh

xml

* Update DISCLAIMER.md

!testme

* Auto-update README

* Fix docdbprefix screenshots

* Auto-update README

* more fixing

* Auto-update README

* typo

* Auto-update README

Co-authored-by: jarod5001 <68397534+jarod5001@users.noreply.github.com>
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-03-23 08:21:02 +01:00

74 lines
2.5 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
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
ynh_print_info --message="Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
ynh_backup --src_path="$final_path"
#=================================================
# 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"
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
ynh_backup --src_path="/etc/logrotate.d/$app"
#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================
ynh_print_info --message="Backing up the MySQL database..."
ynh_mysql_dump_db --database="$db_name" > db.sql
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."