15 lines
360 B
Plaintext
15 lines
360 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ "$1" = purge ]
|
||
|
|
then
|
||
|
|
rm -rf /var/lib/emacsen-common
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Automatically added by dh_installdeb/11.4
|
||
|
|
dpkg-maintscript-helper rm_conffile /etc/emacs/site-start.d/00debian-vars.el 3.0.3\~ emacsen-common -- "$@"
|
||
|
|
dpkg-maintscript-helper rm_conffile /etc/emacs/site-start.el 3.0.3\~ emacsen-common -- "$@"
|
||
|
|
# End automatically added section
|
||
|
|
|