forked from Atoptool/atop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atopacct.rc.openrc
39 lines (33 loc) · 1.03 KB
/
atopacct.rc.openrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/sbin/openrc-run
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Resource-specific view of processes"
command="/usr/sbin/atopacctd"
lockfile="/var/lock/subsys/atopacctd"
start_pre() {
# Check if process accounting already in use via psacct
for PACCTFILE in /var/account/pacct /var/log/pacct ; do
if [ -f "${PACCTFILE}" ] ; then
BEFORSIZE=$(stat -c %s "${PACCTFILE}")
AFTERSIZE=$(stat -c %s "${PACCTFILE}")
# verify if accounting file grows, so is in use
if [ ${BEFORSIZE} -lt ${AFTERSIZE} ] ; then
ewarn "Process accounting already used by psacct!"
return 1
fi
fi
done
checkpath -d -q ${lockfile%/*} || return 1
}
start() {
ebegin "Starting atopacctd"
start-stop-daemon --start --exec ${command}
touch ${lockfile}
eend $?
}
stop() {
ebegin "Stopping atopacctd"
start-stop-daemon --stop --exec ${command}
rm ${lockfile}
eend $?
}