mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 01:59:02 +00:00
17 lines
349 B
Plaintext
17 lines
349 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (c) 2014 OpenWrt.org
|
||
|
|
||
|
START=11
|
||
|
|
||
|
USE_PROCD=1
|
||
|
PROG=/usr/sbin/auditd
|
||
|
|
||
|
start_service() {
|
||
|
mkdir -p /var/log/audit
|
||
|
procd_open_instance
|
||
|
procd_set_param command "$PROG" -n
|
||
|
procd_set_param respawn
|
||
|
procd_close_instance
|
||
|
test -f /etc/audit/rules.d/audit.rules && /usr/sbin/auditctl -R /etc/audit/rules.d/audit.rules
|
||
|
}
|