代码拉取完成,页面将自动刷新
#!/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 $?
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。