forked from sig_core/toolkit
5 lines
133 B
Bash
Executable File
5 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
r_log "postgresql" "Creating user"
|
|
su - postgres -c 'createuser -S -R -D testuser' > /dev/null 2>&1
|
|
r_checkExitStatus $?
|