summaryrefslogtreecommitdiff
blob: 6bc7ef5df3550fcca91689fbe326c95bc45b1319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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 $?
}