#!/bin/sh # postrm script for policycoreutils # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; remove) if [ -L /usr/sbin/load_policy ]; then rm /usr/sbin/load_policy fi ;; purge) if [ -e /etc/selinux/config ]; then echo "Removing old /etc/selinux/config file." rm -f /etc/selinux/config fi rm -f /.autorelabel ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. # Automatically added by dh_installinit/13.7.1 if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = "purge" ] ; then update-rc.d selinux-autorelabel remove >/dev/null fi # End automatically added section # Automatically added by dh_installdeb/13.7.1 dpkg-maintscript-helper rm_conffile /etc/default/sandbox 2.1.13-1\~ -- "$@" dpkg-maintscript-helper rm_conffile /etc/init.d/sandbox 2.1.13-1\~ -- "$@" dpkg-maintscript-helper mv_conffile /etc/init.d/debian-selinux-autorelabel /etc/init.d/selinux-autorelabel 2.5-2\~ -- "$@" # End automatically added section # Automatically added by dh_installsystemd/13.7.1 if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then systemctl --system daemon-reload >/dev/null || true fi # End automatically added section # Automatically added by dh_installsystemd/13.7.1 if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then systemctl --system daemon-reload >/dev/null || true fi # End automatically added section exit 0