summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@debian.org>2013-07-15 17:50:15 +0200
committerMichael Stapelberg <michael@stapelberg.de>2013-07-15 17:50:15 +0200
commit45446fb0d587c6b013c44c939c3ea859fbba69ab (patch)
tree16d3200b8974fd836c89d1a7c258c301b7109781
parentb0d6e0ba3365f8c1e12e502fc649f4e858072adf (diff)
downloadinit-system-helpers-45446fb0d587c6b013c44c939c3ea859fbba69ab.tar.gz
Fix syntax error in dh_systemd_startdebian/1.6
-rw-r--r--debian/changelog6
-rwxr-xr-xscript/dh_systemd_start1
2 files changed, 6 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index bab9997..cf9407e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+init-system-helpers (1.6) unstable; urgency=low
+
+ * Fix syntax error in dh_systemd_start (Closes: #716946)
+
+ -- Michael Stapelberg <stapelberg@debian.org> Mon, 15 Jul 2013 17:49:57 +0200
+
init-system-helpers (1.5) unstable; urgency=low
* deb-systemd-helper: clean up /var/lib/systemd/deb-systemd-helper-enabled
diff --git a/script/dh_systemd_start b/script/dh_systemd_start
index 8d18805..9269ff2 100755
--- a/script/dh_systemd_start
+++ b/script/dh_systemd_start
@@ -193,7 +193,6 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
} elsif (!$dh{NO_START}) {
# We need to stop/start before/after the upgrade.
$sd_autoscript->("postinst", "postinst-systemd-start");
- }
}
$sd_autoscript->("postrm", "postrm-systemd-reload-only");