This file is indexed.

/etc/init/cgroup-lite.conf is in cgroup-lite 1.1.

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
description "mount available cgroup filesystems"
author "Serge Hallyn <serge.hallyn@canonical.com>"

start on mounted MOUNTPOINT=/sys

pre-start script
	test -x /usr/bin/cgroups-mount || { stop; exit 0; }
	test -d /sys/fs/cgroup || { stop; exit 0; }
	/usr/bin/cgroups-mount
end script

post-stop script
	if [ -x /usr/bin/cgroups-umount ]
	then
		/usr/bin/cgroups-umount
	fi
end script