Skip to content

Commit

Permalink
Merge branch 'to_7.1.6' into release/7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
btovar committed Jun 11, 2020
2 parents bc564ff + 017ddcb commit f28851a
Show file tree
Hide file tree
Showing 59 changed files with 561 additions and 309 deletions.
2 changes: 1 addition & 1 deletion batch_job/src/batch_job_work_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static void specify_envlist( struct work_queue_task *t, struct jx *envlist )
if(envlist) {
struct jx_pair *p;
for(p=envlist->u.pairs;p;p=p->next) {
work_queue_task_specify_enviroment_variable(t,p->key->u.string_value,p->value->u.string_value);
work_queue_task_specify_environment_variable(t,p->key->u.string_value,p->value->u.string_value);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion batch_job/src/work_queue_factory.c
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ static void show_help(const char *cmd)
printf(" %-30s Specify the linking libraries for running mesos (for use with -T mesos).\n", "--mesos-preload");
printf(" %-30s Specify the container image for using Kubernetes (for use with -T k8s).\n", "--k8s-image");
printf(" %-30s Specify the container image that contains work_queue_worker availabe for using Kubernetes (for use with -T k8s).\n", "--k8s-worker-image");
printf(" %-30s Send debugging to this file (can also be :stderr, :stdout, :syslog, or :journal).\n", "-o,--debug-file=<file>");
printf(" %-30s Send debugging to this file (can also be :stderr, or :stdout).\n", "-o,--debug-file=<file>");
printf(" %-30s Specify the size of the debug file (must use with -o option).\n", "-O,--debug-file-size=<mb>");
printf(" %-30s Specify the binary to use for the worker (relative or hard path). It should accept the same arguments as the default work_queue_worker.\n", "--worker-binary=<file>");
printf(" %-30s Will make a best attempt to ensure the worker will execute in the specified OS environment, regardless of the underlying OS.\n","--runos=<img>");
Expand Down
2 changes: 1 addition & 1 deletion chirp/src/chirp_fuse.c
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ static void show_help(const char *cmd)
fprintf(stdout, " %-30s Run in foreground for debugging.\n", "-f,--foreground");
fprintf(stdout, " %-30s Comma-delimited list of tickets to use for authentication.\n", "-i,--tickets=<files>");
fprintf(stdout, " %-30s Mount options passed to FUSE.\n", "-m,--mount-options=<options>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Timeout for network operations. (default is %ds)\n", "-t,--timeout=<timeout>", chirp_fuse_timeout);
fprintf(stdout, " %-30s Show program version.\n", "-v,--version");
fprintf(stdout, " %-30s This message.\n", "-h,--help");
Expand Down
2 changes: 1 addition & 1 deletion chirp/src/chirp_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ static void show_help(const char *cmd)
fprintf(stdout, "The most common options are:\n");
fprintf(stdout, " %-30s URL of storage directory, like `file://path' or `hdfs://host:port/path'.\n", "-r,--root=<url>");
fprintf(stdout, " %-30s Enable debugging for this subsystem.\n", "-d,--debug=<name>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Send status updates to this host. (default: `%s')\n", "-u,--advertise=<host>", CATALOG_HOST);
fprintf(stdout, " %-30s Show version info.\n", "-v,--version");
fprintf(stdout, " %-30s This message.\n", "-h,--help");
Expand Down
2 changes: 1 addition & 1 deletion chirp/src/chirp_status.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static void show_help(const char *cmd)
fprintf(stdout, "where options are:\n");
fprintf(stdout, " %-30s Query the catalog on this host.\n", "-c,--catalog=<host>");
fprintf(stdout, " %-30s Enable debugging for this sybsystem\n", "-d,--debug=<flag>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Rotate file once it reaches this size. (default 10M, 0 disables)\n", "-O,--debug-rotate-max=<bytes>");
fprintf(stdout, " %-30s Only show servers with this space available. (example: -A 100MB)\n", "-A,--server-space=<size>");
fprintf(stdout, " %-30s Only show servers with this project.\n", " --server-project=<name>");
Expand Down
2 changes: 1 addition & 1 deletion chirp/src/chirp_tool.c
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,7 @@ static void show_help(const char *cmd)
fprintf(stdout, "where options are:\n");
fprintf(stdout, " %-30s Require this authentication mode.\n", "-a,--auth=<flag>");
fprintf(stdout, " %-30s Enable debugging for this subsystem.\n", "-d,--debug=<flag>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Comma-delimited list of tickets to use for authentication.\n", "-i,--tickets=<files>");
fprintf(stdout, " %-30s Long transfer information.\n", "-l,--verbose");
fprintf(stdout, " %-30s Set remote operation timeout.\n", "-t,--timeout=<time>");
Expand Down
2 changes: 1 addition & 1 deletion chirp/src/confuga_adm.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static void help (const char *argv0)
fprintf(stdout, "use: %s [options] <Confuga root> <cmd> [...]\n", argv0);
fprintf(stdout, "The most common options are:\n");
fprintf(stdout, " %-30s Enable debugging for this subsystem.\n", "-d,--debug=<name>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
fprintf(stdout, " %-30s Show version info.\n", "-v,--version");
fprintf(stdout, " %-30s This message.\n", "-h,--help");
fprintf(stdout, "\n");
Expand Down
7 changes: 1 addition & 6 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

MAJOR=7
MINOR=1
MICRO=5
MICRO=6

# Optionally set the source/tag for this code (e.g. RC1 or FINAL). Setting
# this variable is instead useful for statically naming the source when it will
Expand Down Expand Up @@ -1317,11 +1317,6 @@ optional_include stdint.h HAS_STDINT_H HAVE_STDINT_H
optional_include sys/statfs.h HAS_SYS_STATFS_H
optional_include sys/statvfs.h HAS_SYS_STATVFS_H
optional_include sys/vfs.h HAS_SYS_VFS_H
optional_include syslog.h HAS_SYSLOG_H

#if optional_library_function systemd/sd-journal.h sd_journal_print systemd HAS_SYSTEMD_JOURNAL_H; then
# external_libraries="${external_libraries} -lsystemd"
#fi

cctools_doctargets=
if check_path doxygen
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/allpairs_master.m4
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ OPTIONS_BEGIN
OPTION_TRIPLET(-p,port,port)The port that the master will be listening on.
OPTION_TRIPLET(-e,extra-args,args)Extra arguments to pass to the comparison function.
OPTION_TRIPLET(-f,input-file,file)Extra input file needed by the comparison function. (may be given multiple times)
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_TRIPLET(-O,--output-file,file)Write task output to this file (default to standard output)
OPTION_TRIPLET(-t,estimated-time,seconds)Estimated time to run one comparison. (default chosen at runtime)
OPTION_TRIPLET(-x,width,item)Width of one work unit, in items to compare. (default chosen at runtime)
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/catalog_server.m4
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ OPTION_TRIPLET(-L, update-log,file)Log new updates to this file.
OPTION_TRIPLET(-m, max-jobs,n)Maximum number of child processes. (default is 50)
OPTION_TRIPLET(-M, server-size, size)Maximum size of a server to be believed. (default is any)
OPTION_TRIPLET(-n, name, name)Set the preferred hostname of this server.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_TRIPLET(-O, debug-rotate-max, bytes)Rotate debug file once it reaches this size (default 10M, 0 disables).
OPTION_TRIPLET(-p,, port, port)Port number to listen on (default is 9097)
OPTION_ITEM(`-S, --single')Single process mode; do not fork on queries.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/chirp_fuse.m4
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ OPTION_ITEM(`-D, --no-optimize')Disable small file optimizations such as recursi
OPTION_ITEM(`-f, --foreground')Run in foreground for debugging.
OPTION_TRIPLET(-i,tickets,files)Comma-delimited list of tickets to use for authentication.
OPTION_TRIPLET(-m,mount-options,option)Pass mount option to FUSE. Can be specified multiple times.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_TRIPLET(-t,timeout,timeout)Timeout for network operations. (default is 60s)
OPTION_ITEM(`-v, --version')Show program version.
OPTION_ITEM(`-h, --help')Give help information.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/chirp_server.m4
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ OPTION_ITEM(`-h, --help')Give help information.
OPTION_TRIPLET(-I, interface,addr)Listen only on this network interface.
OPTION_TRIPLET(-M, max-clients,count)Set the maximum number of clients to accept at once. (default unlimited)
OPTION_TRIPLET(-n, catalog-name,name)Use this name when reporting to the catalog.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_TRIPLET(-O, debug-rotate-max,bytes)Rotate debug file once it reaches this size.
OPTION_TRIPLET(-P,superuser,user)Superuser for all directories. (default is none)
OPTION_TRIPLET(-p,port,port)Listen on this port (default is 9094, arbitrary is 0)
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/chirp_status.m4
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OPTION_ITEM(`-l, --verbose')Long output.
OPTION_ITEM(`-T, --totals')Totals output.
OPTION_ITEM(`-v, --version')Show program version.
OPTION_TRIPLET(-d,debug,flag)Enable debugging for this subsystem.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_TRIPLET(-O,debug-rotate-max,bytes)Rotate file once it reaches this size.
OPTION_ITEM(`-h, --help')Show help text.
OPTIONS_END
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/confuga_adm.m4
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ SECTION(OPTIONS)
OPTIONS_BEGIN
OPTION_TRIPLET(-d, debug, flag)Enable debugging for this sybsystem
OPTION_ITEM(`-h, --help')Give help information.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_ITEM(`-v, --version')Show version info.
OPTIONS_END

Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/makeflow.m4
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ OPTIONS_END
SUBSECTION(Debugging Options)
OPTIONS_BEGIN
OPTION_TRIPLET(-d, debug, subsystem)Enable debugging for this subsystem.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_PAIR(--debug-rotate-max, byte)Rotate debug file once it reaches this size.
OPTION_ITEM(`--verbose')Display runtime progress on stdout.
OPTIONS_END
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/parrot_package_create.m4
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ OPTION_ITEM(` --new-env')The relative path of the environment variable file u
OPTION_TRIPLET(-n, name-list, path)The path of the namelist list.
OPTION_TRIPLET(-p, package-path, path)The path of the package.
OPTION_TRIPLET(-d, debug, flag)Enable debugging for this sub-system.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_ITEM(`-h, --help')Show the help info.
OPTIONS_END

Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/parrot_run.m4
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ OPTION_TRIPLET(-e, env-list, path)Record the environment variables.
OPTION_TRIPLET(-n, name-list, path)Record all the file names.
OPTION_ITEM(--no-set-foreground)Disable changing the foreground process group of the session.
OPTION_TRIPLET(-N, hostname, name)Pretend that this is my hostname.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_TRIPLET(-O, debug-rotate-max, bytes)Rotate debug files of this size.
OPTION_TRIPLET(-p, proxy, host:port)Use this proxy server for HTTP requests.
OPTION_ITEM(-Q, --no-chirp-catalog)Inhibit catalog queries to list /chirp.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/resource_monitor.m4
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ LONGCODE_END
SECTION(OPTIONS)
OPTIONS_BEGIN
OPTION_TRIPLET(-d,debug,subsystem)Enable debugging for this subsystem.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_ITEM(`-v,--version')Show version string.
OPTION_ITEM(`-h,--help')Show help text.
OPTION_TRIPLET(-i,interval,n)Maximum interval between observations, in seconds (default=1).
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/resource_monitor_histograms.m4
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ LONGCODE_END
SUBSECTION(Debugging Options)
OPTIONS_BEGIN
OPTION_TRIPLET(-d, debug, subsystem)Enable debugging for this subsystem.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_ITEM(`--verbose')Display runtime progress on stdout.
OPTIONS_END

Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/wavefront_master.m4
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OPTION_ITEM(`-h, --help')Show this help screen
OPTION_ITEM(`-v, --version')Show version string
OPTION_TRIPLET(-d, debug, subsystem)Enable debugging for this subsystem. (Try -d all to start.)
OPTION_TRIPLET(-N, project-name, project)Set the project name to <project>
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_TRIPLET(-p, port, port)Port number for queue master to listen on.
OPTION_TRIPLET(-P, priority, num)Priority. Higher the value, higher the priority.
OPTION_TRIPLET(-Z, port-file, file)Select port at random and write it to this file. (default is disabled)
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/work_queue_factory.m4
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ OPTION_PAIR(--mesos-path,filepath)Specify path to mesos python library (for use
OPTION_PAIR(--mesos-preload,library)Specify the linking libraries for running mesos (for use with -T mesos).
OPTION_ITEM(--k8s-image)Specify the container image for using Kubernetes (for use with -T k8s).
OPTION_ITEM(--k8s-worker-image)Specify the container image that contains work_queue_worker availabe for using Kubernetes (for use with -T k8s).
OPTION_TRIPLET(-o,debug-file,file)Send debugging to this file (can also be :stderr, :stdout, :syslog, or :journal).
OPTION_TRIPLET(-o,debug-file,file)Send debugging to this file (can also be :stderr, or :stdout).
OPTION_TRIPLET(-O,debug-file-size,mb)Specify the size of the debug file (must use with -o option).
OPTION_PAIR(--worker-binary,file)Specify the binary to use for the worker (relative or hard path). It should accept the same arguments as the default work_queue_worker.
OPTION_PAIR(--runos,img)Will make a best attempt to ensure the worker will execute in the specified OS environment, regardless of the underlying OS.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/work_queue_status.m4
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ OPTION_ITEM(`-l, --verbose')Long output.
OPTION_TRIPLET(-C, catalog, catalog)Set catalog server to <catalog>. Format: HOSTNAME:PORT
OPTION_TRIPLET(-d, debug, flag)Enable debugging for the given subsystem. Try -d all as a start.
OPTION_TRIPLET(-t, timeout, time)RPC timeout (default=300s).
OPTION_TRIPLET(-o, debug-file, file)Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)
OPTION_TRIPLET(-o, debug-file, file)Send debugging to this file. (can also be :stderr, or :stdout)
OPTION_TRIPLET(-O, debug-rotate-max, bytes)Rotate debug file once it reaches this size.
OPTION_ITEM(`-v, --version')Show work_queue_status version.
OPTION_ITEM(`-h, --help')Show this help message.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/m4/work_queue_worker.m4
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ OPTION_ITEM(-h, --help')Show this help message.
OPTION_TRIPLET(-N,-M, master-name, name)Set the name of the project this worker should work for. A worker can have multiple projects.
OPTION_TRIPLET(-C, catalog, catalog)Set catalog server to PARAM(catalog). Format: HOSTNAME:PORT
OPTION_TRIPLET(-d, debug, flag)Enable debugging for the given subsystem. Try -d all as a start.
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs be sent to stdout (":stdout"), to the system syslog (":syslog"), or to the systemd journal (":journal").
OPTION_TRIPLET(-o,debug-file,file)Write debugging output to this file. By default, debugging is sent to stderr (":stderr"). You may specify logs to be sent to stdout (":stdout") instead.
OPTION_PAIR(--debug-max-rotate, bytes)Set the maximum file size of the debug log. If the log exceeds this size, it is renamed to "filename.old" and a new logfile is opened. (default=10M. 0 disables)
OPTION_ITEM(--debug-release-reset)Debug file will be closed, renamed, and a new one opened after being released from a master.
OPTION_ITEM(`--foreman')Enable foreman mode.
Expand Down
Loading

0 comments on commit f28851a

Please sign in to comment.