public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emulation/spice-vdagent/files: spice-vdagent.initd
@ 2011-07-25  9:24 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 2+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2011-07-25  9:24 UTC (permalink / raw
  To: gentoo-commits

dev-zero    11/07/25 09:24:52

  Modified:             spice-vdagent.initd
  Log:
  Version bump (bug #376269).
  
  (Portage version: 2.1.10.6/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-emulation/spice-vdagent/files/spice-vdagent.initd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd?r1=1.1&r2=1.2

Index: spice-vdagent.initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- spice-vdagent.initd	11 May 2011 09:02:31 -0000	1.1
+++ spice-vdagent.initd	25 Jul 2011 09:24:52 -0000	1.2
@@ -1,7 +1,7 @@
 #!/sbin/runscript
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd,v 1.1 2011/05/11 09:02:31 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd,v 1.2 2011/07/25 09:24:52 dev-zero Exp $
 
 depend() {
     after dbus
@@ -26,6 +26,9 @@
     fi
     eend 0
 
+    # recreate the directory since /var/run may reside on a ramdisk
+    mkdir -p /var/run/spice-vdagentd
+
     # cleanup stalled socket
     rm -f /var/run/spice-vdagentd/spice-vdagent-sock
 






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/spice-vdagent/files: spice-vdagent.initd
@ 2011-08-15  0:42 Jeroen Roovers (jer)
  0 siblings, 0 replies; 2+ messages in thread
From: Jeroen Roovers (jer) @ 2011-08-15  0:42 UTC (permalink / raw
  To: gentoo-commits

jer         11/08/15 00:42:13

  Modified:             spice-vdagent.initd
  Log:
  Fix init.d script thanks to Chris Mayo (bug #378833).
  
  (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  app-emulation/spice-vdagent/files/spice-vdagent.initd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd?r1=1.2&r2=1.3

Index: spice-vdagent.initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- spice-vdagent.initd	25 Jul 2011 09:24:52 -0000	1.2
+++ spice-vdagent.initd	15 Aug 2011 00:42:13 -0000	1.3
@@ -1,7 +1,7 @@
 #!/sbin/runscript
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd,v 1.2 2011/07/25 09:24:52 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice-vdagent/files/spice-vdagent.initd,v 1.3 2011/08/15 00:42:13 jer Exp $
 
 depend() {
     after dbus
@@ -33,7 +33,7 @@
     rm -f /var/run/spice-vdagentd/spice-vdagent-sock
 
     ebegin "Starting spice VD agent daemon"
-    start-stop-daemon
+    start-stop-daemon \
         --start \
         --pidfile "${PIDFILE}" \
         --exec /usr/sbin/spice-vdagentd \
@@ -43,7 +43,7 @@
 
 stop() {
     ebegin "Stopping spice VD agent daemon"
-    start-stop-daemon
+    start-stop-daemon \
         --stop \
         --pidfile "${PIDFILE}"
     eend $?






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-08-15  0:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-25  9:24 [gentoo-commits] gentoo-x86 commit in app-emulation/spice-vdagent/files: spice-vdagent.initd Tiziano Mueller (dev-zero)
  -- strict thread matches above, loose matches on Subject: below --
2011-08-15  0:42 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox