1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/glitchsoc_ynh.git synced 2024-09-03 19:15:59 +02:00

[fix] Copy dump in $finalpath

This commit is contained in:
nemsia 2017-04-25 21:21:11 +02:00 committed by GitHub
parent d15d287456
commit 5850d81662

View file

@ -81,16 +81,18 @@ sudo su -c "psql" postgres <<< \
sudo su -c "psql" postgres <<< \ sudo su -c "psql" postgres <<< \
"update pg_database set datistemplate='true' where datname='template1';" "update pg_database set datistemplate='true' where datname='template1';"
# Acl for Postgres user dump # Copy postgresql dump
sudo chmod a+rx $YNH_APP_BACKUP_DIR sudo cp $YNH_APP_BACKUP_DIR/mastodon_db.sql $final_path
sudo chmod a+rx $YNH_APP_BACKUP_DIR/mastodon_db.sql
# Restore db # Restore db
ynh_psql_create_db_without_password "$app" ynh_psql_create_db_without_password "$app"
sudo su - postgres <<COMMANDS sudo su - postgres <<COMMANDS
pg_dump --role=mastodon -U postgres --no-password mastodon < $YNH_APP_BACKUP_DIR/mastodon_db.sql pg_dump --role=mastodon -U postgres --no-password mastodon < $final_path/mastodon_db.sql
COMMANDS COMMANDS
# Delete dump after restore
# rm $final_path/mastodon_db.sql
# Create symlink for ruby # Create symlink for ruby
sudo ln -s /opt/mastodon/.rbenv/versions/2.4.1/bin/ruby /usr/bin/ruby || true sudo ln -s /opt/mastodon/.rbenv/versions/2.4.1/bin/ruby /usr/bin/ruby || true