diff options
Diffstat (limited to 'grsec-common.install')
-rw-r--r-- | grsec-common.install | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/grsec-common.install b/grsec-common.install new file mode 100644 index 0000000..0244dc8 --- /dev/null +++ b/grsec-common.install @@ -0,0 +1,7 @@ +post_install() { + getent group tpe >/dev/null || groupadd -g 200 tpe + getent group audit >/dev/null || groupadd -g 201 audit + getent group socket-deny-all >/dev/null || groupadd -g 202 socket-deny-all + getent group socket-deny-client >/dev/null || groupadd -g 203 socket-deny-client + getent group socket-deny-server >/dev/null || groupadd -g 204 socket-deny-server +} |