diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:40:54 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:40:54 +0000 |
commit | 0336e3b7a97fe9ab118065eff0b25fad507a9a50 (patch) | |
tree | e49702ccec26f0ace090ed80ad22ec9a4a8975ab /debian/redis-sentinel.postrm | |
parent | Adding upstream version 5:7.2.4. (diff) | |
download | redis-debian/5%7.2.4-1.tar.xz redis-debian/5%7.2.4-1.zip |
Adding debian version 5:7.2.4-1.debian/5%7.2.4-1
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 |