toolkit/func/core/pkg_postgresql/10-create-db.sh

5 lines
102 B
Bash
Raw Normal View History

2022-06-20 23:49:14 +00:00
#!/bin/bash
r_log "postgresql" "Creating db"
su - postgres -c 'createdb pg_test'
r_checkExitStatus $?