Skip to content

Commit f28851a

Browse files
committed
Merge branch 'to_7.1.6' into release/7.1
2 parents bc564ff + 017ddcb commit f28851a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+561
-309
lines changed

batch_job/src/batch_job_work_queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static void specify_envlist( struct work_queue_task *t, struct jx *envlist )
6363
if(envlist) {
6464
struct jx_pair *p;
6565
for(p=envlist->u.pairs;p;p=p->next) {
66-
work_queue_task_specify_enviroment_variable(t,p->key->u.string_value,p->value->u.string_value);
66+
work_queue_task_specify_environment_variable(t,p->key->u.string_value,p->value->u.string_value);
6767
}
6868
}
6969
}

batch_job/src/work_queue_factory.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@ static void show_help(const char *cmd)
10201020
printf(" %-30s Specify the linking libraries for running mesos (for use with -T mesos).\n", "--mesos-preload");
10211021
printf(" %-30s Specify the container image for using Kubernetes (for use with -T k8s).\n", "--k8s-image");
10221022
printf(" %-30s Specify the container image that contains work_queue_worker availabe for using Kubernetes (for use with -T k8s).\n", "--k8s-worker-image");
1023-
printf(" %-30s Send debugging to this file (can also be :stderr, :stdout, :syslog, or :journal).\n", "-o,--debug-file=<file>");
1023+
printf(" %-30s Send debugging to this file (can also be :stderr, or :stdout).\n", "-o,--debug-file=<file>");
10241024
printf(" %-30s Specify the size of the debug file (must use with -o option).\n", "-O,--debug-file-size=<mb>");
10251025
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>");
10261026
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>");

chirp/src/chirp_fuse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ static void show_help(const char *cmd)
583583
fprintf(stdout, " %-30s Run in foreground for debugging.\n", "-f,--foreground");
584584
fprintf(stdout, " %-30s Comma-delimited list of tickets to use for authentication.\n", "-i,--tickets=<files>");
585585
fprintf(stdout, " %-30s Mount options passed to FUSE.\n", "-m,--mount-options=<options>");
586-
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
586+
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
587587
fprintf(stdout, " %-30s Timeout for network operations. (default is %ds)\n", "-t,--timeout=<timeout>", chirp_fuse_timeout);
588588
fprintf(stdout, " %-30s Show program version.\n", "-v,--version");
589589
fprintf(stdout, " %-30s This message.\n", "-h,--help");

chirp/src/chirp_server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1846,7 +1846,7 @@ static void show_help(const char *cmd)
18461846
fprintf(stdout, "The most common options are:\n");
18471847
fprintf(stdout, " %-30s URL of storage directory, like `file://path' or `hdfs://host:port/path'.\n", "-r,--root=<url>");
18481848
fprintf(stdout, " %-30s Enable debugging for this subsystem.\n", "-d,--debug=<name>");
1849-
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
1849+
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
18501850
fprintf(stdout, " %-30s Send status updates to this host. (default: `%s')\n", "-u,--advertise=<host>", CATALOG_HOST);
18511851
fprintf(stdout, " %-30s Show version info.\n", "-v,--version");
18521852
fprintf(stdout, " %-30s This message.\n", "-h,--help");

chirp/src/chirp_status.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static void show_help(const char *cmd)
4646
fprintf(stdout, "where options are:\n");
4747
fprintf(stdout, " %-30s Query the catalog on this host.\n", "-c,--catalog=<host>");
4848
fprintf(stdout, " %-30s Enable debugging for this sybsystem\n", "-d,--debug=<flag>");
49-
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
49+
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
5050
fprintf(stdout, " %-30s Rotate file once it reaches this size. (default 10M, 0 disables)\n", "-O,--debug-rotate-max=<bytes>");
5151
fprintf(stdout, " %-30s Only show servers with this space available. (example: -A 100MB)\n", "-A,--server-space=<size>");
5252
fprintf(stdout, " %-30s Only show servers with this project.\n", " --server-project=<name>");

chirp/src/chirp_tool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ static void show_help(const char *cmd)
11981198
fprintf(stdout, "where options are:\n");
11991199
fprintf(stdout, " %-30s Require this authentication mode.\n", "-a,--auth=<flag>");
12001200
fprintf(stdout, " %-30s Enable debugging for this subsystem.\n", "-d,--debug=<flag>");
1201-
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
1201+
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
12021202
fprintf(stdout, " %-30s Comma-delimited list of tickets to use for authentication.\n", "-i,--tickets=<files>");
12031203
fprintf(stdout, " %-30s Long transfer information.\n", "-l,--verbose");
12041204
fprintf(stdout, " %-30s Set remote operation timeout.\n", "-t,--timeout=<time>");

chirp/src/confuga_adm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ static void help (const char *argv0)
108108
fprintf(stdout, "use: %s [options] <Confuga root> <cmd> [...]\n", argv0);
109109
fprintf(stdout, "The most common options are:\n");
110110
fprintf(stdout, " %-30s Enable debugging for this subsystem.\n", "-d,--debug=<name>");
111-
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, :stdout, :syslog, or :journal)\n", "-o,--debug-file=<file>");
111+
fprintf(stdout, " %-30s Send debugging to this file. (can also be :stderr, or :stdout)\n", "-o,--debug-file=<file>");
112112
fprintf(stdout, " %-30s Show version info.\n", "-v,--version");
113113
fprintf(stdout, " %-30s This message.\n", "-h,--help");
114114
fprintf(stdout, "\n");

configure

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
MAJOR=7
77
MINOR=1
8-
MICRO=5
8+
MICRO=6
99

1010
# Optionally set the source/tag for this code (e.g. RC1 or FINAL). Setting
1111
# this variable is instead useful for statically naming the source when it will
@@ -1317,11 +1317,6 @@ optional_include stdint.h HAS_STDINT_H HAVE_STDINT_H
13171317
optional_include sys/statfs.h HAS_SYS_STATFS_H
13181318
optional_include sys/statvfs.h HAS_SYS_STATVFS_H
13191319
optional_include sys/vfs.h HAS_SYS_VFS_H
1320-
optional_include syslog.h HAS_SYSLOG_H
1321-
1322-
#if optional_library_function systemd/sd-journal.h sd_journal_print systemd HAS_SYSTEMD_JOURNAL_H; then
1323-
# external_libraries="${external_libraries} -lsystemd"
1324-
#fi
13251320

13261321
cctools_doctargets=
13271322
if check_path doxygen

doc/man/m4/allpairs_master.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ OPTIONS_BEGIN
2929
OPTION_TRIPLET(-p,port,port)The port that the master will be listening on.
3030
OPTION_TRIPLET(-e,extra-args,args)Extra arguments to pass to the comparison function.
3131
OPTION_TRIPLET(-f,input-file,file)Extra input file needed by the comparison function. (may be given multiple times)
32-
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").
32+
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.
3333
OPTION_TRIPLET(-O,--output-file,file)Write task output to this file (default to standard output)
3434
OPTION_TRIPLET(-t,estimated-time,seconds)Estimated time to run one comparison. (default chosen at runtime)
3535
OPTION_TRIPLET(-x,width,item)Width of one work unit, in items to compare. (default chosen at runtime)

doc/man/m4/catalog_server.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ OPTION_TRIPLET(-L, update-log,file)Log new updates to this file.
4949
OPTION_TRIPLET(-m, max-jobs,n)Maximum number of child processes. (default is 50)
5050
OPTION_TRIPLET(-M, server-size, size)Maximum size of a server to be believed. (default is any)
5151
OPTION_TRIPLET(-n, name, name)Set the preferred hostname of this server.
52-
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").
52+
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.
5353
OPTION_TRIPLET(-O, debug-rotate-max, bytes)Rotate debug file once it reaches this size (default 10M, 0 disables).
5454
OPTION_TRIPLET(-p,, port, port)Port number to listen on (default is 9097)
5555
OPTION_ITEM(`-S, --single')Single process mode; do not fork on queries.

0 commit comments

Comments
 (0)