diff options
author | unknown <lenz@mysql.com> | 2002-12-13 09:56:02 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-12-13 09:56:02 +0100 |
commit | d8a0617508abcb8d56e8889ca3166b8a5a11b8fa (patch) | |
tree | fc818f6de6112ab8c78134dfea6519e0c6e30766 /scripts | |
parent | ff50fc4fe5f33722cbe13e04be393d6a2d4bf5ce (diff) | |
download | mariadb-git-d8a0617508abcb8d56e8889ca3166b8a5a11b8fa.tar.gz |
- added missing "test" to $NOHUP_NICENESS test (thanks to Nick Gaugler for
spotting and reporting this)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/safe_mysqld.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/safe_mysqld.sh b/scripts/safe_mysqld.sh index 96568bd5d19..c2b6b8cd8b7 100644 --- a/scripts/safe_mysqld.sh +++ b/scripts/safe_mysqld.sh @@ -159,7 +159,7 @@ then NOHUP_NICENESS=`nohup nice 2>&1` if test $? -eq 0 && test x"$NOHUP_NICENESS" != x0 && nice --1 echo foo > /dev/null 2>&1 then - if $NOHUP_NICENESS -gt 0 + if test $NOHUP_NICENESS -gt 0 then $NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup" else |