/etc/init/cgproxy.conf is in cgmanager 0.24-0ubuntu5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | description "cgroup management proxy"
author "Serge Hallyn <serge.hallyn@ubuntu.com>"
respawn
expect stop
emits cgmanager-ready
# in trusty /sys/fs/cgroup will be mounted for us.
# prior to saucy, we would need to start on mounted
# MOUNTPOINT=/sys, and mount /sys/fs/cgroup ourselves
start on started cgmanager
stop on runlevel [06]
# to get debug output into /var/log/upstart/cgproxy.log, create/edit
# /etc/default/cgmanager and set cgmanager_opts="--debug"
env cgmanager_opts=""
env NESTED="no"
pre-start script
# check whether we should start
if [ -e /proc/self/ns/pid ] && [ "$NESTED" = "no" ]; then
initctl emit -n cgmanager-ready
{ stop; exit 0; }
fi
end script
script
[ -r /etc/default/cgmanager ] && . /etc/default/cgmanager
exec /sbin/cgproxy --sigstop $cgmanager_opts
end script
post-start exec initctl emit -n cgmanager-ready
|