summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Muskee <wimmuskee@gmail.com>2016-12-27 11:31:17 +0100
committerRobin H. Johnson <robbat2@gentoo.org>2017-01-07 13:32:36 -0800
commite5926f877e770d40534286630c96426885258393 (patch)
treec167d381133b10bcc142c055177eaca0247cb2d9 /sys-process/acct/files
parentnet-mail/fetchmail: Add instance systemd.service file (fetchmail@.service) (diff)
downloadgentoo-e5926f877e770d40534286630c96426885258393.tar.gz
gentoo-e5926f877e770d40534286630c96426885258393.tar.bz2
gentoo-e5926f877e770d40534286630c96426885258393.zip
sys-process/acct: initd implement checkpath, #603606
(cherry picked from commit 34607e7a775cc87873fd4710513f923b36ba75dc) Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'sys-process/acct/files')
-rw-r--r--sys-process/acct/files/acct.initd-r134
1 files changed, 34 insertions, 0 deletions
diff --git a/sys-process/acct/files/acct.initd-r1 b/sys-process/acct/files/acct.initd-r1
new file mode 100644
index 000000000000..b895f2257aa7
--- /dev/null
+++ b/sys-process/acct/files/acct.initd-r1
@@ -0,0 +1,34 @@
+#!/sbin/openrc-run
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+extra_started_commands="report"
+
+depend() {
+ need localmount
+}
+
+checkconfig() {
+ export ACCT_LOG=${ACCT_LOG:-/var/account/pacct}
+ checkpath -f -m 600 "${ACCT_LOG}"
+ return 0
+}
+
+start() {
+ checkconfig || return 1
+
+ ebegin "Starting accounting"
+ accton "${ACCT_LOG}" >/dev/null
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping accounting"
+ accton off >/dev/null
+ eend $?
+}
+
+report() {
+ sa ${REPORT_OPTS} "${ACCT_LOG}"
+}