From aaf49ec8275375649ea8bbb8395a0bf8a29effc4 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Thu, 9 Oct 2014 08:11:53 +0100 Subject: [PATCH] do not leave services stopped on upgrade; bump Debian package version --- debian/changelog | 6 ++++++ debian/postinst | 1 + 2 files changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3772190a..a4ba7d2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +autoradio (0.3.2) unstable; urgency=medium + + * Add statsd instrumentation. + + -- ale <ale@incal.net> Wed, 08 Oct 2014 17:25:57 +0100 + autoradio (0.3.1) unstable; urgency=medium * Add bwmonitor and associated load balancing policy. diff --git a/debian/postinst b/debian/postinst index bc2b0a6b..e913ff8a 100644 --- a/debian/postinst +++ b/debian/postinst @@ -36,6 +36,7 @@ activate_services() { for svc in $@ ; do test -e /etc/service/$svc \ || ln -s /etc/svc/$svc /etc/service/$svc + sv start $svc || true done } -- GitLab