From 3fc4a58c32d06dd818602625f58e10db78687f0a Mon Sep 17 00:00:00 2001 From: Riccardo Coccioli Date: Thu, 14 Jan 2016 15:26:36 +0100 Subject: [PATCH] Added message after installation * Added a message post-installation that remember the user to enable the statsd or statsd-proxy services if they need to be started at boot. --- debian/postinst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/debian/postinst b/debian/postinst index 31efff95..9e1c11c7 100755 --- a/debian/postinst +++ b/debian/postinst @@ -15,4 +15,13 @@ if [ "$1" = configure ]; then dpkg-statoverride --update --add _statsd _statsd 0755 /var/run/statsd fi + cat << EOF +Available systemd services are disabled by default: + * statsd + * statsd-proxy + +To enable one of them use: + systemctl enable NAME +EOF + fi