forked from lix-project/hydra
6 lines
220 B
Perl
6 lines
220 B
Perl
use strict;
|
|
system("initdb -D postgres") == 0 or die;
|
|
system("pg_ctl -D postgres -o \"-F -p 6433 -h ''\" -w start") == 0 or die;
|
|
system("createdb -p 6433 hydra-test-suite") == 0 or die;
|
|
system("hydra-init") == 0 or die;
|