postrm is in unburden-home-dir 0.3.3.
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 | #!/bin/sh
set -e
# Move around configuration files from earlier experimental versions
dpkg-maintscript-helper mv_conffile \
/etc/X11/Xsession.d/95unburden_home_dir /etc/X11/Xsession.d/95unburden-home-dir \
0.0.20110401 -- "$@"
dpkg-maintscript-helper mv_conffile \
/etc/unburden_home_dir_list /etc/unburden-home-dir.list \
0.0.20110401 -- "$@"
dpkg-maintscript-helper mv_conffile \
/etc/unburden_home_dir /etc/unburden-home-dir \
0.0.20110401 -- "$@"
|