forked from sig_core/toolkit
4 lines
123 B
Bash
Executable file
4 lines
123 B
Bash
Executable file
#!/bin/bash
|
|
r_log "postgresql" "Dropping database"
|
|
su - postgres -c 'dropdb pg_test' > /dev/null 2>&1
|
|
r_checkExitStatus $?
|