diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:46:57 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:46:57 +0000 |
commit | ff49fdb2c5e63bb1e7a0620ed3e80d42d313b04a (patch) | |
tree | 0d525f5d5d227d08c6012c3c25216e9586731b34 /debian/buildd.postrm | |
parent | Adding upstream version 0.85.6. (diff) | |
download | sbuild-debian/0.85.6.tar.xz sbuild-debian/0.85.6.zip |
Adding debian version 0.85.6.debian/0.85.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/buildd.postrm')
-rwxr-xr-x | debian/buildd.postrm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/debian/buildd.postrm b/debian/buildd.postrm new file mode 100755 index 0000000..f86b47c --- /dev/null +++ b/debian/buildd.postrm @@ -0,0 +1,45 @@ +#! /bin/sh +# postrm script for buildd +# +# 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' <r>overwrit>r> <new-version> +# for details, see /usr/share/doc/packaging-manual/ + +case "$1" in + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade) + + ;; + + purge|disappear) + + # Lock buildd account. + usermod -L -e 1 buildd || true + + ;; + + *) + + echo "postrm called with unknown argument \`$1'" >&2 + exit 0 + + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 |