2013-11-17 21:58:21 +03:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
#use strict;
|
|
|
|
|
2013-11-21 05:49:07 +03:00
|
|
|
my $strPgBinPath = '/Library/PostgreSQL/9.3/bin/';
|
2013-11-17 21:58:21 +03:00
|
|
|
|
|
|
|
sub execute
|
|
|
|
{
|
|
|
|
local($strCommand) = @_;
|
|
|
|
my $strOutput;
|
|
|
|
|
|
|
|
print("$strCommand\n");
|
|
|
|
$strOutput = qx($strCommand) or return 0;
|
|
|
|
print("$strOutput\n");
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub pg_create
|
|
|
|
{
|
|
|
|
local($strPath) = @_;
|
|
|
|
|
2013-11-21 06:30:26 +03:00
|
|
|
execute($strPgBinPath . "initdb -D $strPath -A trust -k");
|
2013-11-17 21:58:21 +03:00
|
|
|
execute("mkdir $strPath/archive");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub pg_start
|
|
|
|
{
|
|
|
|
local($strPath) = @_;
|
2013-11-21 06:24:30 +03:00
|
|
|
my $strCommand = $strPgBinPath . "pg_ctl start -o \"-c port=6000 -c wal_level=archive -c archive_mode=on -c archive_command='test ! -f $strPath/archive/%f && cp %p $strPath/archive/%f'\" -D $strPath -l $strPath/postgresql.log -w -s";
|
2013-11-17 21:58:21 +03:00
|
|
|
|
|
|
|
execute($strCommand);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub pg_stop
|
|
|
|
{
|
|
|
|
local($strPath) = @_;
|
|
|
|
my $strCommand = $strPgBinPath . "pg_ctl stop -D $strPath -w -s";
|
|
|
|
|
|
|
|
execute($strCommand);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub pg_drop
|
|
|
|
{
|
|
|
|
local($strPath) = @_;
|
|
|
|
my $strCommand = "rm -rf $strPath";
|
|
|
|
|
|
|
|
execute($strCommand);
|
|
|
|
}
|
|
|
|
|
2013-11-21 05:49:07 +03:00
|
|
|
pg_stop("/Users/dsteele/test/test2");
|
|
|
|
pg_drop("/Users/dsteele/test/test2");
|
|
|
|
pg_create("/Users/dsteele/test/test2");
|
|
|
|
pg_start("/Users/dsteele/test/test2");
|
2013-11-21 06:24:30 +03:00
|
|
|
pg_stop("/Users/dsteele/test/test2");
|
2013-11-23 01:29:01 +03:00
|
|
|
|