diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:31:02 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:31:02 +0000 |
commit | 3f0e321b489e2eb1de700d20b850d5a43aecf769 (patch) | |
tree | 2e1bf6a66273dce009ed7f1f08dfb5bb9424bc80 /debian/redis-sentinel.postrm | |
parent | Adding upstream version 5:7.0.15. (diff) | |
download | redis-debian.tar.xz redis-debian.zip |
Adding debian version 5:7.0.15-1~deb12u1.debian/5%7.0.15-1_deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/redis-sentinel.postrm')
-rw-r--r-- | debian/redis-sentinel.postrm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/redis-sentinel.postrm b/debian/redis-sentinel.postrm new file mode 100644 index 0000000..6c9d422 --- /dev/null +++ b/debian/redis-sentinel.postrm @@ -0,0 +1,14 @@ +#!/bin/sh + +set -eu + +CONFFILE="/etc/redis/sentinel.conf" + +if [ "$1" = "purge" ] +then + dpkg-statoverride --remove ${CONFFILE} || test $? -eq 2 +fi + +#DEBHELPER# + +exit 0 |