Debian release 2.6.4-2.1

This commit is contained in:
Sébastien Villemot 2012-11-27 08:34:19 +01:00
parent d1870abc94
commit 6bfb45a6bc
2 changed files with 22 additions and 0 deletions

8
debian/changelog vendored
View file

@ -1,3 +1,11 @@
nut (2.6.4-2.1) unstable; urgency=low
* Non-maintainer upload.
* debian/nut-client.preinst: revert /etc/nut/nut.conf mangling done by older
versions of the postinst (Closes: #677054)
-- Sébastien Villemot <sebastien@debian.org> Mon, 26 Nov 2012 21:09:33 +0100
nut (2.6.4-2) unstable; urgency=low
* debian/rules: Stop the nut-client before nut-server on systems using static

14
debian/nut-client.preinst vendored Normal file
View file

@ -0,0 +1,14 @@
#!/bin/sh
set -e
# Revert /etc/nut/nut.conf mangling done by older versions of the postinst
# See #677054
if [ "$1" = "install" -o "$1" = "upgrade" ] \
&& dpkg --compare-versions "$2" lt "2.6.4-2" \
&& [ -f /etc/nut/nut.conf ] \
&& [ "`md5sum /etc/nut/nut.conf | cut -d ' ' -f 1`" = f9b571ae65952e3a761fac2202633478 ]; then
sed -i 's/^MODE=none$/MODE = none/' /etc/nut/nut.conf
fi
#DEBHELPER#