]> gitweb.michael.orlitzky.com - mailshears.git/blob - bin/install-fixtures.sh
Update a comment and delete a newline.
[mailshears.git] / bin / install-fixtures.sh
1 #!/bin/sh
2
3 dropdb --if-exists -U postgres agendav
4 createdb -U postgres agendav
5 psql -U postgres -d agendav < test/sql/agendav.sql
6 psql -U postgres -d agendav < test/sql/agendav-fixtures.sql
7
8 dropdb --if-exists -U postgres davical
9 createdb -U postgres davical
10 psql -U postgres -d davical < test/sql/davical.sql
11 psql -U postgres -d davical < test/sql/davical-fixtures.sql
12
13 dropdb --if-exists -U postgres postfixadmin
14 createdb -U postgres postfixadmin
15 psql -U postgres -d postfixadmin < test/sql/postfixadmin.sql
16 psql -U postgres -d postfixadmin < test/sql/postfixadmin-fixtures.sql
17
18 dropdb --if-exists -U postgres roundcube
19 createdb -U postgres roundcube
20 psql -U postgres -d roundcube < test/sql/roundcube.sql
21 psql -U postgres -d roundcube < test/sql/roundcube-fixtures.sql