mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 14:41:09 +00:00
9 lines
No EOL
102 B
Bash
Executable file
9 lines
No EOL
102 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
export PGHOST=$1
|
|
export PGDATA="$1/dev_pgdata"
|
|
echo $PGHOST
|
|
|
|
pg_ctl stop
|
|
rm -rf $1 |