diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:38:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:38:07 +0000 |
commit | 6dc7255b85d1c1bb1b66b94c55a91f21905eef08 (patch) | |
tree | 09a26e75b022344fa64251c7973cccfffe8f174d /debian/powerline.postinst | |
parent | Adding upstream version 2.8.1. (diff) | |
download | powerline-6dc7255b85d1c1bb1b66b94c55a91f21905eef08.tar.xz powerline-6dc7255b85d1c1bb1b66b94c55a91f21905eef08.zip |
Adding debian version 2.8.1-4.debian/2.8.1-4debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/powerline.postinst | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/debian/powerline.postinst b/debian/powerline.postinst new file mode 100644 index 0000000..135678e --- /dev/null +++ b/debian/powerline.postinst @@ -0,0 +1,38 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + . /usr/share/debconf/confmodule + + db_get powerline/enable + POWERLINE_ENABLE="${RET}" # boolean + + db_stop + + rm -f /etc/profile.d/zz-powerline.sh + + for ENABLE in $(echo ${POWERLINE_ENABLE} | sed -e 's|,| |g') + do + case "${ENABLE}" in + bash) + ln -sf /usr/share/powerline/integrations/powerline.sh /etc/profile.d/zz-powerline.sh + ;; + esac + done + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |