forked from sig_core/toolkit
5 lines
122 B
Bash
Executable File
5 lines
122 B
Bash
Executable File
#!/bin/bash
|
|
r_log "postgresql" "Dropping user"
|
|
su - postgres -c 'dropuser testuser' > /dev/null 2>&1
|
|
r_checkExitStatus $?
|