mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 16:52:06 +01:00
15 lines
170 B
Plaintext
15 lines
170 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
start() {
|
|
ebegin "Enabling grsecurity RBAC policy"
|
|
gradm -E
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Disabling grsecurity RBAC policy"
|
|
gradm -D
|
|
eend $?
|
|
}
|
|
|