Add additional options for createuser
This commit is contained in:
parent
41bc851b84
commit
48f3bb5beb
|
@ -392,6 +392,7 @@ _createuser () {
|
||||||
{-d,--createdb}'[role can create new databases]' \
|
{-d,--createdb}'[role can create new databases]' \
|
||||||
{-D,--no-createdb}'[role cannot create databases]' \
|
{-D,--no-createdb}'[role cannot create databases]' \
|
||||||
{-E,--encrypted}'[encrypt stored password]' \
|
{-E,--encrypted}'[encrypt stored password]' \
|
||||||
|
{-g,--role=}'[new role will be a member of this role]' \
|
||||||
{-i,--inherit}'[role inherits privileges of roles it is a member of (default)]' \
|
{-i,--inherit}'[role inherits privileges of roles it is a member of (default)]' \
|
||||||
{-I,--no-inherit}'[role does not inherit privileges]' \
|
{-I,--no-inherit}'[role does not inherit privileges]' \
|
||||||
{-l,--login}'[role can login (default)]' \
|
{-l,--login}'[role can login (default)]' \
|
||||||
|
@ -401,7 +402,10 @@ _createuser () {
|
||||||
{-r,--createrole}'[role can create new roles]' \
|
{-r,--createrole}'[role can create new roles]' \
|
||||||
{-R,--no-createrole}'[role cannot create roles]' \
|
{-R,--no-createrole}'[role cannot create roles]' \
|
||||||
{-s,--superuser}'[role will be superuser]' \
|
{-s,--superuser}'[role will be superuser]' \
|
||||||
{-S,--no-superuser}'[role will not be superuser]'
|
{-S,--no-superuser}'[role will not be superuser]' \
|
||||||
|
{--interactive}'[prompt for missing role name and attributes rather than using defaults]' \
|
||||||
|
{--replication}'[role can initiate replication]' \
|
||||||
|
{--no-replication}'[role cannot initiate replication]' \
|
||||||
}
|
}
|
||||||
|
|
||||||
_dropuser () {
|
_dropuser () {
|
||||||
|
|
Loading…
Reference in New Issue