View | Details | Raw Unified | Return to bug 10941
Collapse All | Expand All

(-)orig/mysqld.sysconfig (+2 lines)
Lines 2-5 Link Here
2
CHSET=
2
CHSET=
3
# other server opts
3
# other server opts
4
OPT=
4
OPT=
5
# nice level
6
NICE=-5
5
7
(-)orig/mysqld_wrapper (-1 / +1 lines)
Lines 43-49 Link Here
43
43
44
while :; do
44
while :; do
45
	rm -f "$socket" "$pidfile"
45
	rm -f "$socket" "$pidfile"
46
	nice $mysqld "$@"
46
	$mysqld "$@"
47
	RETVAL=$?
47
	RETVAL=$?
48
	if [ $RETVAL -eq 0 ]; then
48
	if [ $RETVAL -eq 0 ]; then
49
		msg=succeded
49
		msg=succeded

Return to bug 10941