postinst is in ubuntu-mate-default-settings 18.04.17.
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 | #!/bin/sh
rm -f /usr/local/bin/firefox
rm -f /usr/local/bin/thunderbird
# Automatically added by dh_installdeb/11.1.6ubuntu1
dpkg-maintscript-helper rm_conffile /etc/xdg/autostart/nm-applet-mate.desktop 0.4.2ubuntu1 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/xdg/autostart/tilda.desktop 0.4.2ubuntu1 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/skel/.local/share/applications/im-config.desktop 0.4.2ubuntu1 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/skel/.local/share/applications/mimeapps.list 0.4.2ubuntu1 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/skel/.config/libreoffice/4/user/registrymodifications.xcu 0.4.2ubuntu1 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/skel/.config/tilda/config_0 0.4.2ubuntu1 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/profile.d/mate.sh 17.10.17 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/profile.d/gtk-accessibility.sh 17.10.17 -- "$@"
dpkg-maintscript-helper rm_conffile /etc/X11/Xsession.d/99mate-environment 17.10.17 -- "$@"
# End automatically added section
exit 0
|