fixed postins stdout

This commit is contained in:
Simon Stürz 2015-02-19 18:56:06 +01:00 committed by Michael Zanetti
parent 632dc3bf76
commit 400fd479a1
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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