Re: Argument to start_daemon, use of --

2010-08-05 Thread Malte Forkel
Am 01.08.2010 16:03, schrieb Malte Forkel: > > The example init script init.d.lsb.ex provided by dh-make 0.46 contains > this call to start_daemon: > >start_daemon -p $PIDFILE $DAEMON -- $DAEMON_OPTS > > This always passes "--" as first argument to my daemon. Wouldn't > >start_daemon -p

Re: Argument to start_daemon, use of --

2010-08-02 Thread Bob Proulx
Malte Forkel wrote: > The example init script init.d.lsb.ex provided by dh-make 0.46 contains > this call to start_daemon: >start_daemon -p $PIDFILE $DAEMON -- $DAEMON_OPTS > This always passes "--" as first argument to my daemon. Wouldn't >start_daemon -p $PIDFILE -- $DAEMON $DAEMON_OPTS >

Re: Argument to start_daemon, use of --

2010-08-02 Thread Jordon Bedwell
On 8/2/2010 3:36 AM, Malte Forkel wrote: So its a bug that I should report? If the -- is in a Debian specific script from a maintainer I would, and post the proof that -- is being passed to the executable before _OPTS and ask them if this is intended and then explain to them how it breaks wh

Re: Argument to start_daemon, use of --

2010-08-02 Thread Malte Forkel
Am 01.08.2010 16:26, schrieb Jordon Bedwell: > On 8/1/2010 9:03 AM, Malte Forkel wrote: >> Hi, >> >> The example init script init.d.lsb.ex provided by dh-make 0.46 contains >> this call to start_daemon: >> >> start_daemon -p $PIDFILE $DAEMON -- $DAEMON_OPTS >> >> This always passes "--" as firs

Re: Argument to start_daemon, use of --

2010-08-01 Thread Jordon Bedwell
On 8/1/2010 9:03 AM, Malte Forkel wrote: Hi, The example init script init.d.lsb.ex provided by dh-make 0.46 contains this call to start_daemon: start_daemon -p $PIDFILE $DAEMON -- $DAEMON_OPTS This always passes "--" as first argument to my daemon. Wouldn't start_daemon -p $PIDFILE --

Argument to start_daemon, use of --

2010-08-01 Thread Malte Forkel
Hi, The example init script init.d.lsb.ex provided by dh-make 0.46 contains this call to start_daemon: start_daemon -p $PIDFILE $DAEMON -- $DAEMON_OPTS This always passes "--" as first argument to my daemon. Wouldn't start_daemon -p $PIDFILE -- $DAEMON $DAEMON_OPTS be the proper call? I