1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wekan_ynh.git synced 2024-09-03 20:36:09 +02:00

Merge pull request #88 from YunoHost-Apps/clean_output

Clean mogodb backup and restore output
This commit is contained in:
yalh76 2020-05-27 03:54:53 +02:00 committed by GitHub
commit 8c5316efd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
ynh_print_info --message="Backing up the MongoDB database..."
mongodump --db "$db_name" -o "./dump"
mongodump --quiet --db="$db_name" --out="./dump"
#=================================================
# SPECIFIC BACKUP

View file

@ -103,7 +103,7 @@ ynh_print_info --message="Restoring the MongoDB database..."
# Start mongodb
systemctl enable $mongodb_servicename
systemctl start $mongodb_servicename
mongorestore --db $db_name ./dump/$db_name
mongorestore --quiet --db="$db_name" "./dump/$db_name"
#=================================================
# RESTORE SYSTEMD