prerm is in ubuntu-touch-session 0.108+16.04.20160407-0ubuntu1.
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 | #!/bin/sh -e
if [ "$1" = remove ]; then
pam-auth-update --package --remove touch-extrausers
fi
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/lightdm/lightdm.conf.d/52-ubuntu-touch.conf 0.108 -- "$@"
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/init/ubuntu-touch-session-setup.conf -- "$@"
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/init/ubuntu-touch-session.conf -- "$@"
# End automatically added section
|