diff options
author | Benjamin Smee <strerror@gentoo.org> | 2005-10-10 19:27:23 +0000 |
---|---|---|
committer | Benjamin Smee <strerror@gentoo.org> | 2005-10-10 19:27:23 +0000 |
commit | 7488fefdd53d70604887cdc9f91a7c3a4de6fd75 (patch) | |
tree | 1dd6ab1a304790ab8fb3a9f0a363c20cea0f67a5 /net-analyzer/sguil-sensor | |
parent | Remove INSTALL and COPYING from docs (diff) | |
download | gentoo-2-7488fefdd53d70604887cdc9f91a7c3a4de6fd75.tar.gz gentoo-2-7488fefdd53d70604887cdc9f91a7c3a4de6fd75.tar.bz2 gentoo-2-7488fefdd53d70604887cdc9f91a7c3a4de6fd75.zip |
fix to sensor_agent.initd for pid creation
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'net-analyzer/sguil-sensor')
-rw-r--r-- | net-analyzer/sguil-sensor/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/sguil-sensor/files/sensor_agent.initd | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/net-analyzer/sguil-sensor/ChangeLog b/net-analyzer/sguil-sensor/ChangeLog index 34dbcc8b661e..b7791564cf33 100644 --- a/net-analyzer/sguil-sensor/ChangeLog +++ b/net-analyzer/sguil-sensor/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/sguil-sensor # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-sensor/ChangeLog,v 1.4 2005/10/10 01:09:54 strerror Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-sensor/ChangeLog,v 1.5 2005/10/10 19:27:23 strerror Exp $ + + 10 Oct 2005; Benjamin Smee <strerror@gentoo.org> files/sensor_agent.initd: + fix to sensor_agent.initd for pid creation 10 Oct 2005; Benjamin Smee <strerror@gentoo.org> sguil-sensor-0.5.3-r1.ebuild: diff --git a/net-analyzer/sguil-sensor/files/sensor_agent.initd b/net-analyzer/sguil-sensor/files/sensor_agent.initd index 22f8ad372fc2..8201f991091a 100644 --- a/net-analyzer/sguil-sensor/files/sensor_agent.initd +++ b/net-analyzer/sguil-sensor/files/sensor_agent.initd @@ -17,7 +17,7 @@ checkconfig() { start() { checkconfig || return 1 ebegin "Starting Sensor Agent" - start-stop-daemon --start -c sguil --pidfile /var/run/sguil/sensor.pid \ + start-stop-daemon --start -c sguil -m --pidfile /var/run/sguil/sensor.pid \ --quiet --exec /usr/bin/sensor_agent.tcl -- -D -c "/etc/sguil/sensor_agent.conf">/dev/null 2>&1 eend $? } |