Package: sysv-rc
Version: 2.86.ds.1-8

When using the "startpar" CONCURRENCY, I ran into two different issues.

The first is a typo:

-$newscripts="$newscripts $script"
+newscripts="$newscripts $script"

The second is how startpar is being invoked:

-$debug startpar -a $action $scripts
+[ -n "$scripts" ] && $debug startpar -a $action $scripts > /dev/null

Before startpar was being called always, but if scripts were sourced in the S runlevel, there may be no scripts to execute. So we need to verify that there are scripts to run. Second, startpar responds to stdout with the return codes of any scripts that it executes. I have redirected this to /dev/null to match existing screen output from the rc scripts.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to