~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled_safe.in

Merged Nathan from lp:~nlws/drizzle/fix-string-c-ptr-overrun

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  --no-defaults              Don't read the system defaults file
50
50
  --defaults-file=FILE       Use the specified defaults file
51
51
  --defaults-extra-file=FILE Also use defaults from the specified file
52
 
  --open-files-limit=LIMIT   Limit the number of open files
53
52
  --core-file-size=LIMIT     Limit core files to the specified size
54
53
  --timezone=TZ              Set the system timezone
55
54
  --drizzled=FILE              Use the specified file as drizzled
183
182
        fi
184
183
        ;;
185
184
      --nice=*) niceness="$val" ;;
186
 
      --open-files-limit=*) open_files="$val" ;;
187
185
      --skip-kill-drizzled*) KILL_DRIZZLED=0 ;;
188
186
      --syslog) want_syslog=1 ;;
189
187
      --skip-syslog) want_syslog=0 ;;
368
366
  if test -n "$open_files"
369
367
  then
370
368
    ulimit -n $open_files
371
 
    append_arg_to_args "--open-files-limit=$open_files"
372
369
  fi
373
370
fi
374
371
 
394
391
does not exist or is not executable. Please cd to the mysql installation
395
392
directory and restart this script from there as follows:
396
393
./bin/drizzled_safe&
397
 
See http://dev.mysql.com/doc/mysql/en/drizzled-safe.html for more information"
 
394
"
398
395
  exit 1
399
396
fi
400
397