diff options
| author | Daniel Golle | 2020-08-31 23:31:22 +0000 |
|---|---|---|
| committer | Daniel Golle | 2020-08-31 23:32:54 +0000 |
| commit | 93ed51e5b6c6ad6a2e65b04b7b5066cf4e19e614 (patch) | |
| tree | 8f8cd7ab061b629ac85fc35191b23ff305bd7a05 | |
| parent | 395ac4d018d007335d6475ba00b0013d31cc0476 (diff) | |
| download | openwrt-93ed51e5b6c6ad6a2e65b04b7b5066cf4e19e614.tar.gz | |
libaudit: drop unused file
Drop init script from libaudit package. It will be added to the
'audit' package in the packages feed.
Fixes: efdf619f21 ("audit: build only libaudit")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
| -rw-r--r-- | package/libs/libaudit/files/audit.init | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/package/libs/libaudit/files/audit.init b/package/libs/libaudit/files/audit.init deleted file mode 100644 index 4a9f53884b..0000000000 --- a/package/libs/libaudit/files/audit.init +++ /dev/null @@ -1,16 +0,0 @@ -#!/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 -} |