Last change
on this file since 211 was
211,
checked in by bastiaans, 17 years ago
|
jobarchived/make_dbase.sh:
deleted: all old rrd_* test scripts
|
-
Property svn:executable set to
*
|
File size:
330 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | # |
---|
3 | # This shellscript will setup jobarchived's SQL database |
---|
4 | # |
---|
5 | |
---|
6 | # Path of postgres's "createdb" |
---|
7 | # |
---|
8 | CREATEDB='/usr/bin/createdb' |
---|
9 | |
---|
10 | # Path of postgres's "psql" |
---|
11 | # |
---|
12 | PSQL='/usr/bin/psql' |
---|
13 | |
---|
14 | # dbname for toga |
---|
15 | # |
---|
16 | JOBDBNAME='jobarch' |
---|
17 | |
---|
18 | # dbfile for toga |
---|
19 | # |
---|
20 | JOBDBCMD='./job_dbase.sql' |
---|
21 | |
---|
22 | $CREATEDB $JOBDBNAME |
---|
23 | $PSQL -f $JOBDBCMD $JOBDBNAME |
---|
Note: See
TracBrowser
for help on using the repository browser.