Skip to content

Commit

Permalink
Do not specify the dump name in the script, manage this dump in the dev5
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmajchrak committed Mar 18, 2024
1 parent d2560ed commit 9041c0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/init.dspacedb5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ createuser --username=postgres dspace

echo "Importing clarin-dspace"
createdb --username=postgres --owner=dspace --encoding=UNICODE clarin-dspace
psql -U postgres clarin-dspace < ../dump/clarin-dspace-8.8.23.sql &> /dev/null
psql -U postgres clarin-dspace < ../dump/clarin-dspace-8.8.23.sql &> ./__clarin-dspace.log
psql -U postgres clarin-dspace < ../dump/clarin-dspace.sql &> /dev/null
psql -U postgres clarin-dspace < ../dump/clarin-dspace.sql &> ./__clarin-dspace.log

echo "Importing clarin-utilities"
createdb --username=postgres --encoding=UNICODE clarin-utilities
psql -U postgres clarin-utilities < ../dump/clarin-utilities-8.8.23.sql &> /dev/null
psql -U postgres clarin-utilities < ../dump/clarin-utilities-8.8.23.sql &> ./__clarin-utilities.log
psql -U postgres clarin-utilities < ../dump/clarin-utilities.sql &> /dev/null
psql -U postgres clarin-utilities < ../dump/clarin-utilities.sql &> ./__clarin-utilities.log

echo "Done, starting psql"

Expand Down

0 comments on commit 9041c0c

Please sign in to comment.