From 400fd479a1caf1f8f28a2d400700501eb38fb1b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Thu, 19 Feb 2015 18:56:06 +0100 Subject: [PATCH] fixed postins stdout --- data/init/guhd | 4 ++-- debian/guhd.postinst | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/data/init/guhd b/data/init/guhd index 6e3d01e7..fb29bd7b 100644 --- a/data/init/guhd +++ b/data/init/guhd @@ -27,8 +27,8 @@ # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: guh daemon -# Description: guh is an open source home automation server, which allows to -# control a lot of different devices from many different manufacturers. +# Description: guh is an open source home automation server, which allows to +# control a lot of different devices from many different manufacturers. # ### END INIT INFO diff --git a/debian/guhd.postinst b/debian/guhd.postinst index 8366d62e..8b6d4c4c 100755 --- a/debian/guhd.postinst +++ b/debian/guhd.postinst @@ -23,12 +23,12 @@ # restart the guh daemon after update if it's running service guhd status > /dev/null 2>&1 if [ $? -eq 0 ]; then - echo -n "Restart guh daemon..." + #echo -n "Restart guh daemon..." service guhd restart if [ $? -eq 0 ]; then - echo "OK!" + echo "Successfully restarted guh daemon." else - echo "FAIL!" + echo "FAILED to restart guh daemon." fi fi