Skip to content

Commit

Permalink
Do not specify the dump name in the script, manage this dump in the d…
Browse files Browse the repository at this point in the history
…ev5 (#134)
  • Loading branch information
milanmajchrak authored May 6, 2024
1 parent 9759137 commit 0f097a1
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 0f097a1

Please sign in to comment.