include support for dists < dh11

Former-commit-id: 1930b759a9acce126342709acfb7884649023f3d
This commit is contained in:
Ben Schermel 2020-05-31 14:26:24 -04:00 committed by John Sully
parent 563b6af4e1
commit ee9c6923d1
6 changed files with 33 additions and 4 deletions

View File

@ -21,7 +21,12 @@ Build-Depends:
autotools-dev <!nocheck>,
autoconf <!nocheck>,
libjemalloc-dev <!nocheck>,
libssl-dev <!nocheck>
libssl-dev <!nocheck>,
libsnappy-dev <!nocheck>,
zlib1g-dev <!nocheck>,
libbz2-dev <!nocheck>,
liblz4-dev <!nocheck>,
libzstd-dev <!nocheck>
Standards-Version: 4.2.1
Homepage: https://docs.keydb.dev/
Vcs-Git: https://github.com/JohnSully/KeyDB-Pro.git

View File

@ -21,6 +21,6 @@ then
find /etc/keydb -maxdepth 1 -type d -name 'keydb-sentinel.*.d' -empty -delete
fi
sytemctl daemon-reload
systemctl daemon-reload
exit 0

View File

@ -11,6 +11,6 @@ fi
#DEBHELPER#
sytemctl daemon-reload
systemctl daemon-reload
exit 0

View File

@ -0,0 +1,12 @@
#!/bin/sh
set -e
# Automatically added by dh_installinit/11.1.6ubuntu1
if [ -x "/etc/init.d/keydb-sentinel" ]; then
invoke-rc.d keydb-sentinel stop || exit 1
fi
# End automatically added section
# Automatically added by dh_installsystemd/11.1.6ubuntu1
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
deb-systemd-invoke stop 'keydb-sentinel.service' >/dev/null || true
fi
# End automatically added section

View File

@ -11,6 +11,6 @@ fi
#DEBHELPER#
sytemctl daemon-reload
systemctl daemon-reload
exit 0

View File

@ -0,0 +1,12 @@
#!/bin/sh
set -e
# Automatically added by dh_installinit/11.1.6ubuntu1
if [ -x "/etc/init.d/keydb-server" ]; then
invoke-rc.d keydb-server stop || exit 1
fi
# End automatically added section
# Automatically added by dh_installsystemd/11.1.6ubuntu1
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
deb-systemd-invoke stop 'keydb-server.service' >/dev/null || true
fi
# End automatically added section