[Pkg-voip-commits] r8184 - in /yate/trunk/debian: changelog yate.init

tzafrir-guest at alioth.debian.org tzafrir-guest at alioth.debian.org
Thu Mar 11 18:25:32 UTC 2010


Author: tzafrir-guest
Date: Thu Mar 11 18:25:25 2010
New Revision: 8184

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=8184
Log:
yate.init: behave more sensibly in case of an error. 

Modified:
    yate/trunk/debian/changelog
    yate/trunk/debian/yate.init

Modified: yate/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/yate/trunk/debian/changelog?rev=8184&op=diff
==============================================================================
--- yate/trunk/debian/changelog (original)
+++ yate/trunk/debian/changelog Thu Mar 11 18:25:25 2010
@@ -13,8 +13,9 @@
   * Also separate out yate-dahdi (Ioana Stanciu).
   * Which also requires running autoconf, and depending on autoconf.
   * Switch to format v3.
-
- -- Tzafrir Cohen <tzafrir.cohen at xorcom.com>  Mon, 08 Mar 2010 14:56:26 +0200
+  * yate.init: behave more sensibly in case of an error. 
+
+ -- Tzafrir Cohen <tzafrir.cohen at xorcom.com>  Thu, 11 Mar 2010 20:24:13 +0200
 
 yate (2.1.0-1~dfsg-1) unstable; urgency=low
 

Modified: yate/trunk/debian/yate.init
URL: http://svn.debian.org/wsvn/pkg-voip/yate/trunk/debian/yate.init?rev=8184&op=diff
==============================================================================
--- yate/trunk/debian/yate.init (original)
+++ yate/trunk/debian/yate.init Thu Mar 11 18:25:25 2010
@@ -41,14 +41,14 @@
 	#so yate won't load the client modules
 	unset DISPLAY
 
-	start-stop-daemon --start --quiet --pidfile $PIDFILE \
+	start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE \
 		--user $YATE_USER --group $YATE_GROUP \
 		--exec $DAEMON -- $DAEMON_OPTS
 	echo "$NAME."
 	;;
   stop)
 	echo -n "Stopping $DESC: "
-	start-stop-daemon --stop --quiet --pidfile $PIDFILE --oknodo --exec $DAEMON
+	start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE --exec $DAEMON
 	echo "$NAME."
 	;;
   reload)
@@ -57,7 +57,7 @@
   ;;
   restart|force-reload)
 	echo -n "Restarting $DESC: "
-	start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON
+	start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE --exec $DAEMON
 	sleep 1
 
 	#so yate won't load the client modules




More information about the Pkg-voip-commits mailing list