diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:50:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:50:18 +0000 |
commit | a8f6774ad2693bebb5c45b437815a3dfc777627f (patch) | |
tree | adcb37c02a764490d40305ba8c4c25e82d3b8752 /debian/fence-virtd.postinst | |
parent | Adding upstream version 4.12.1. (diff) | |
download | fence-agents-a8f6774ad2693bebb5c45b437815a3dfc777627f.tar.xz fence-agents-a8f6774ad2693bebb5c45b437815a3dfc777627f.zip |
Adding debian version 4.12.1-1.debian/4.12.1-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/fence-virtd.postinst')
-rw-r--r-- | debian/fence-virtd.postinst | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/debian/fence-virtd.postinst b/debian/fence-virtd.postinst new file mode 100644 index 0000000..a2fc829 --- /dev/null +++ b/debian/fence-virtd.postinst @@ -0,0 +1,45 @@ +#!/bin/sh +# postinst script for fence-virtd +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postinst> `configure' <most-recently-configured-version> +# * <old-postinst> `abort-upgrade' <new version> +# * <conflictor's-postinst> `abort-remove' `in-favour' <package> +# <new-version> +# * <postinst> `abort-remove' +# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' +# <failed-install-package> <version> `removing' +# <conflicting-package> <version> +# for details, see https://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + if ! test -e /etc/fence_virt.key; then + OLD_UMASK=$(umask) + umask 077 + dd if=/dev/urandom of=/etc/fence_virt.key bs=4096 count=1 status=none + umask "$OLD_UMASK" + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst 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 |