From 7d9014285df5dcdecbbf381397a636e6ff771c9b Mon Sep 17 00:00:00 2001 From: nemsia Date: Mon, 1 May 2017 21:26:46 +0200 Subject: [PATCH] [fix] Restore pg dump Restore pg dump with mastodon user. --- scripts/restore | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/scripts/restore b/scripts/restore index 1340796..a57a33f 100644 --- a/scripts/restore +++ b/scripts/restore @@ -101,8 +101,19 @@ RAILS_ENV=production bin/bundle exec rails db:migrate RAILS_ENV=production bin/bundle exec rails assets:precompile RCOMMANDS -# restore database -sudo psql mastodon_production < $YNH_APP_BACKUP_DIR/mastodon_db.sql +# copy database dump +sudo cp $YNH_APP_BACKUP_DIR/mastodon_db.sql $final_path +sudo chmod a+r $final_path/mastodon_db.sql + +# Restore database dump +sudo su - $app <