mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-10 23:12:48 +00:00
73912b850b
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> [fix build with GCC 10 and disable MIPS16 as build emits sync instruction] Signed-off-by: W. Michael Petullo <mike@flyn.org>
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
|
|
}
|