-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Thu, 12 Dec 2002, Nick wrote:
> The following code is incorrect in safe_mysqld on 3.23.54 at least (that
> is all I have checked)
>
> Line 162:
> if $NOHUP_NICENESS -gt 0
> then
> $NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup"
>
>
> T
what an important piece of information, thanks, Nick!
tibyke
On Thu, 12 Dec 2002 12:46:10 -0600
"Nick" <[EMAIL PROTECTED]> wrote:
N> The following code is incorrect in safe_mysqld on 3.23.54 at least (that
N> is all I have checked)
N>
N> Line 162:
N> if $NOHUP_NICENESS -gt 0
N> then
N>
The following code is incorrect in safe_mysqld on 3.23.54 at least (that
is all I have checked)
Line 162:
if $NOHUP_NICENESS -gt 0
then
$NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup"
This needs to be:
if test $NOHUP_NICENESS -gt 0
then
NOHUP_NICENESS="nice --$NOHUP_N