diff options
author | B Stack <bgstack15@gmail.com> | 2019-09-10 23:10:44 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-09-10 23:10:44 -0400 |
commit | 0313a4089306caedfdc001644a4b4ec76cb2d31a (patch) | |
tree | 5ebfa4c55347bd7cc8ce35e118b5f42a2670d43e /chicago95/debian/postrm | |
parent | Merge branch 'mot-bump' into 'master' (diff) | |
download | stackrpms-0313a4089306caedfdc001644a4b4ec76cb2d31a.tar.gz stackrpms-0313a4089306caedfdc001644a4b4ec76cb2d31a.tar.bz2 stackrpms-0313a4089306caedfdc001644a4b4ec76cb2d31a.zip |
initial commit
Baseline child packages are tested, minus plymouth and greeter;
Plymouth is not packaged for devuan (banned because of systemd)
and greeter depends on lightdm-webkit-greeter which I need to
build.
Diffstat (limited to 'chicago95/debian/postrm')
-rw-r--r-- | chicago95/debian/postrm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chicago95/debian/postrm b/chicago95/debian/postrm new file mode 100644 index 0000000..9086993 --- /dev/null +++ b/chicago95/debian/postrm @@ -0,0 +1,17 @@ +#!/bin/sh +set -e + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + +#DEBHELPER# + +exit 0 |