postinst is in cgroup-bin 0.37.1-1ubuntu10.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
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 | #!/bin/sh
set -e
# Automatically added by dh_installinit
if [ -e "/etc/init/cgconfig.conf" ]; then
invoke-rc.d cgconfig start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
update-rc.d -f cgconfig remove >/dev/null || exit $?
# End automatically added section
# Automatically added by dh_installinit
if [ -e "/etc/init/cgred.conf" ]; then
invoke-rc.d cgred start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
update-rc.d -f cgred remove >/dev/null || exit $?
# End automatically added section
# Automatically added by dh_installinit
update-rc.d -f libvirt-cgconfig-wait remove >/dev/null || exit $?
# End automatically added section
|