Norbert, On Sun, 20 Feb 2005, Norbert Tretkowski wrote:
> * Norbert Tretkowski wrote: > > * Cristian Ionescu-Idbohrn wrote: > > > STARTQ value doesn't really matter what it is, as long as it is > > > not the empty string. One solution to this may be a conf file in > > > /etc/default and debconf. This: > > > > Thanks, I added your change to my working copy. Goodie. > http://people.debian.org/~nobse/packages/quintuple-agent/ Had a look, and if you allow another comment on this line: kill $(pidof q-agent) || true in 91quintuple-agent_q-agent, I would say this: If q-agent is already started, it might be for a good reason, so I think avoiding to kill it might be a better choice, so I would change that line to: pidof ${QAGENT##*/} >/dev/null 2>&1 || eval $($QAGENT $QAGENTARG &) unless there is a good reason (which I'm not aware of) for killing it. Cheers, Cristian -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

