~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled_safe.in

  • Committer: Monty Taylor
  • Date: 2009-02-08 09:53:59 UTC
  • mfrom: (832.2.10 drizzle-nomaxcon)
  • mto: This revision was merged to the branch mainline in revision 852.
  • Revision ID: mordred@inaugust.com-20090208095359-39xjloxzpjr1mkg4
MergedĀ fromĀ Mark.

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