mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
Fix backup
This commit is contained in:
parent
d66fcad5ff
commit
4f64985c8c
3 changed files with 4 additions and 9 deletions
|
@ -1,6 +1,5 @@
|
||||||
### Constants
|
### Constants
|
||||||
|
|
||||||
nginx_conf_path="/etc/nginx/conf.d/${domain}.d/ihatemoney.conf"
|
|
||||||
supervisor_conf_path="/etc/supervisor/conf.d/ihatemoney.conf"
|
supervisor_conf_path="/etc/supervisor/conf.d/ihatemoney.conf"
|
||||||
gunicorn_conf_path="/etc/ihatemoney/gunicorn.conf.py"
|
gunicorn_conf_path="/etc/ihatemoney/gunicorn.conf.py"
|
||||||
ihatemoney_conf_path="/etc/ihatemoney/ihatemoney.cfg"
|
ihatemoney_conf_path="/etc/ihatemoney/ihatemoney.cfg"
|
||||||
|
|
|
@ -22,10 +22,10 @@ dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
|
||||||
|
|
||||||
# Backup conf files
|
# Backup conf files
|
||||||
mkdir ./conf
|
mkdir ./conf
|
||||||
ynh_backup "$nginx_conf_path" "conf/nginx.conf"
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
||||||
ynh_backup "$gunicorn_conf_path" "conf/gunicorn.conf.py"
|
ynh_backup "$gunicorn_conf_path"
|
||||||
ynh_backup "$supervisor_conf_path" "conf/supervisor.conf"
|
ynh_backup "$supervisor_conf_path"
|
||||||
ynh_backup "$ihatemoney_conf_path" "conf/ihatemoney.cfg"
|
ynh_backup "$ihatemoney_conf_path"
|
||||||
|
|
||||||
# Dump the database
|
# Dump the database
|
||||||
mysqldump -u "$dbuser" -p"$dbpass" --no-create-db "$dbname" > ./db.sql
|
mysqldump -u "$dbuser" -p"$dbpass" --no-create-db "$dbname" > ./db.sql
|
||||||
|
|
|
@ -23,10 +23,6 @@ test -d $INSTALL_DIR && ynh_die \
|
||||||
"The destination directory '$INSTALL_DIR' already exists.\
|
"The destination directory '$INSTALL_DIR' already exists.\
|
||||||
You should safely delete it before restoring this app."
|
You should safely delete it before restoring this app."
|
||||||
|
|
||||||
test -f $nginx_conf_path && ynh_die \
|
|
||||||
"The NGINX configuration already exists at '${nginx_conf_path}'.
|
|
||||||
You should safely delete it before restoring this app."
|
|
||||||
|
|
||||||
test -f $supervisor_conf_path && ynh_die \
|
test -f $supervisor_conf_path && ynh_die \
|
||||||
"The Supervisor configuration already exists at '${supervisor_conf_path}'.
|
"The Supervisor configuration already exists at '${supervisor_conf_path}'.
|
||||||
You should safely delete it before restoring this app."
|
You should safely delete it before restoring this app."
|
||||||
|
|
Loading…
Reference in a new issue