/
githubmirror
/
audit-userspace
Обзор
Документация
Войти
/
githubmirror
/
audit-userspace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
init.d/auditd.restart
13 строк
311 B
Steve Grubb
Rewrite legacy actions for the new auditctl pidfd_send_signal
06 сен 2023, 01:57
06 сен 2023, 01:57
bc82ac2
Код
Авторство
О чём код?
#!/bin/sh # Helper script to provide legacy auditd service options not # directly supported by systemd. test -f /etc/audit/auditd.conf || exit 6 /sbin/auditctl --signal stop sleep 1 echo "Redirecting start to /bin/systemctl start auditd.service" /bin/systemctl start auditd.service RETVAL="$?" exit $RETVAL