[debian:schlittermann-ssh-keys_0.15]
# ---
# this is for package version schlittermann-ssh-keys_0.15
--- a/debian/changelog Fri Sep 12 11:30:07 2014 +0200
+++ b/debian/changelog Fri Sep 12 12:56:06 2014 +0200
@@ -1,3 +1,9 @@
+schlittermann-ssh-keys (0.15) wheezy; urgency=low
+
+ * Key von Marcus Obst entfernt
+
+ -- Heiko Schlittermann <hs@schlittermann.de> Fri, 12 Sep 2014 12:55:13 +0200
+
schlittermann-ssh-keys (0.14) squeeze lenny; urgency=low
* Non-maintainer upload.
--- a/debian/postinst Fri Sep 12 11:30:07 2014 +0200
+++ b/debian/postinst Fri Sep 12 12:56:06 2014 +0200
@@ -17,10 +17,22 @@
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
+tmp=$(mktemp)
+trap "rm -f $tmp" EXIT
+
+update_log_level() {
+ test -f /etc/ssh/sshd_config || return
+ perl -pe 's/^LogLevel\s+\K.*/VERBOSE/' </etc/ssh/sshd_config >$tmp
+ test $(wc -l <$tmp) = $(wc -l </etc/ssh/sshd_config) || return 0
+ cat <$tmp >/etc/ssh/sshd_config
+ rm -f $tmp
+ invoke-rc.d ssh reload
+}
case "$1" in
configure)
update-schlittermann-ssh-keys
+ update_log_level
;;
abort-upgrade|abort-remove|abort-deconfigure)