You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libcgroup/files/cgred.initd-r1

25 lines
528 B

#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /etc/init.d/cgred,v 1.1 2015/02/14 09:53:59 tokiclover Exp $
command="/usr/sbin/cgrulesengd"
command_args="${CGRED_OPTS}"
command_background="1"
pidfile="/var/run/cgred.pid"
description="CGroups Rules Engine Daemon"
extra_started_commands="reload"
depend()
{
need cgconfig
use logger
}
reload()
{
ebegin "Reloading CGroup Rules Engine Daemon"
kill -USR2 $(cat "${pidfile}")
eend $?
}