From d062e21a5e261731cb95923171359e2e8e6a1958 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 5 Jul 2014 17:57:19 -0400 Subject: [PATCH] propellor spin --- debian/changelog | 2 ++ src/Propellor/Property/Ssh.hs | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8e9a2b4..90992e2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ propellor (0.7.1) UNRELEASED; urgency=medium * Add --edit to edit a privdata value in $EDITOR. * Add --list-fields to list a host's currently set privdata fields. + * Fix randomHostKeys property to run openssh-server's postinst in a + non-failing way. -- Joey Hess Thu, 19 Jun 2014 14:27:21 -0400 diff --git a/src/Propellor/Property/Ssh.hs b/src/Propellor/Property/Ssh.hs index 061f440..3e354af 100644 --- a/src/Propellor/Property/Ssh.hs +++ b/src/Propellor/Property/Ssh.hs @@ -72,9 +72,8 @@ randomHostKeys = flagFile prop "/etc/ssh/.unique_host_keys" [ Param "-c" , Param "rm -f /etc/ssh/ssh_host_*" ] - ensureProperty $ - cmdProperty "/var/lib/dpkg/info/openssh-server.postinst" - ["configure"] + ensureProperty $ scriptProperty + [ "DPKG_MAINTSCRIPT_PACKAGE=openssh-server /var/lib/dpkg/info/openssh-server.postinst configure" ] -- | Sets ssh host keys from the site's PrivData. --