mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-12 21:55:38 +00:00
Turns out auditd depends on libev. Lets have that in packages.git. Signed-off-by: Daniel Golle <daniel@makrotopia.org> Signed-off-by: maurerr <mariusd84@gmail.com>
17 lines
349 B
Bash
17 lines
349 B
Bash
#!/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
|
|
}
|