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/app-admin/cgmanager/files/cgproxy.initd

38 lines
801 B

#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
DAEMON=/usr/sbin/cgproxy
PIDFILE=/run/cgproxy.pid
NESTED=yes
OPTIONS=
depend() {
after cgmanager
}
start() {
ebegin "Starting cgproxy server"
if ! /usr/sbin/cgproxy --check-master; then
ewarn "cgmanager is not running"
return 1
fi
# cgproxy should only run on container unless on older kernel
if [ -e /proc/self/ns/pid ] && [ "$NESTED" != "yes" ]; then
eerror "Too old kernel to support cgroup, please update to >3.8"
return 1
fi
start-stop-daemon --start --pidfile ${PIDFILE} --exec ${DAEMON} \
-- --daemon ${OPTIONS}
eend $?
}
stop() {
ebegin "Stopping cgproxy server"
start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE}
eend $?
}