diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-09 18:40:46 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-09 18:40:46 -0400 |
commit | 2576fa57bb03788ccf752a02c12a7aa4c67e3420 (patch) | |
tree | 38094559d007a8a7c0cbdb19f5ea8f6414dc99c0 /debian/postrm | |
parent | baba6d41d4565c22667f5001abf3099307e90bb4 (diff) | |
download | selinux-policy-2576fa57bb03788ccf752a02c12a7aa4c67e3420.tar.gz |
rm debian
Diffstat (limited to 'debian/postrm')
-rw-r--r-- | debian/postrm | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 39cf1b9..0000000 --- a/debian/postrm +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# postrm script for dssp5. -# -# See: dh_installdeb(1). - -set -e - -# Summary of how this script can be called: -# * <postrm> 'remove' -# * <postrm> 'purge' -# * <old-postrm> 'upgrade' <new-version> -# * <new-postrm> 'failed-upgrade' <old-version> -# * <new-postrm> 'abort-install' -# * <new-postrm> 'abort-install' <old-version> -# * <new-postrm> 'abort-upgrade' <old-version> -# * <disappearer's-postrm> 'disappear' <overwriter> -# <overwriter-version> -# for details, see https://www.debian.org/doc/debian-policy/ or -# the debian-policy package. - - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - rm -rf /etc/selinux/dssp5 /var/lib/selinux/dssp5 - [ -d /var/lib/selinux/final ] && rmdir --ignore-fail-on-non-empty /var/lib/selinux/final - ;; - - *) - 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. - -#DEBHELPER# - -exit 0 |