diff options
author | lenz@mysql.com <> | 2002-11-22 18:26:45 +0100 |
---|---|---|
committer | lenz@mysql.com <> | 2002-11-22 18:26:45 +0100 |
commit | d882391975129b57f4f800f902cc580abd46c03b (patch) | |
tree | 4c6354293d7d13aa50460bb570e4104beeed728f /scripts | |
parent | ac066c9514613381e3f623f49d5c432ed08039b2 (diff) | |
download | mariadb-git-d882391975129b57f4f800f902cc580abd46c03b.tar.gz |
scripts/safe_mysqld.sh
- fix setting of niceness level
support-files/mysql.server.sh
- applied some fixes from 4.0 mysql.server script
- fix my.cnf parsing
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 2b625dbdfa3..2272443c972 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 - NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup" + NOHUP_NICENESS="nice -n $NOHUP_NICENESS nohup" else NOHUP_NICENESS="nohup" fi |