8000 add 'm = MAINTAIN' privilege to the maps in the postgres module · saltstack/salt@a6b8fe4 · GitHub
[go: up one dir, main page]

Skip to content

Commit a6b8fe4

Browse files
jdelicdwoz
authored andcommitted
add 'm = MAINTAIN' privilege to the maps in the postgres module
1 parent 3d6a067 commit a6b8fe4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

salt/modules/postgres.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
"X": "EXECUTE",
9797
"x": "REFERENCES",
9898
"d": "DELETE",
99+
"m": "MAINTAIN",
99100
"*": "GRANT",
100101
}
101102
_PRIVILEGES_OBJECTS = frozenset(
@@ -111,7 +112,7 @@
111112
)
112113
)
113114
_PRIVILEGE_TYPE_MAP = {
114-
"table": "arwdDxt",
115+
"table": "arwdDxtm",
115116
"tablespace": "C",
116117
"language": "U",
117118
"sequence": "rwU",

0 commit comments

Comments
 (0)
0