Skip to content
Snippets Groups Projects
Commit 7d2700c7 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Branch HEAD

Fix usage message to avoid referring to parameters as "files".
b=14471
parent 17b38516
No related branches found
No related tags found
No related merge requests found
...@@ -120,14 +120,14 @@ command_t cmdlist[] = { ...@@ -120,14 +120,14 @@ command_t cmdlist[] = {
{"local_param", jt_lcfg_param, 0, "set a temporary, local param\n" {"local_param", jt_lcfg_param, 0, "set a temporary, local param\n"
"usage: local_param <target.keyword=val> ...\n"}, "usage: local_param <target.keyword=val> ...\n"},
{"get_param", jt_lcfg_getparam, 0, "get the Lustre or LNET parameter\n" {"get_param", jt_lcfg_getparam, 0, "get the Lustre or LNET parameter\n"
"usage: get_param [-n | -N] path/to/param/file \n" "usage: get_param [-n|-N] name.of.param\n"
"Get the value of Lustre or LNET parameter from the specified path\n" "Get the value of Lustre or LNET parameter from the specified path\n"
"Use '-n' to disable printing of the key name when printing values.\n" "Use '-n' to disable printing of parameter name when printing value\n"
"Use '-N' to print only path names and not the values."}, "Use '-N' to print only parameter names and not the values."},
{"set_param", jt_lcfg_setparam, 0, "set the Lustre or LNET parameter\n" {"set_param", jt_lcfg_setparam, 0, "set the Lustre or LNET parameter\n"
"usage: set_param [-n] path/to/param/file value\n" "usage: set_param [-n] name.of.param=value\n"
"Set the value of the Lustre or LNET parameter at the specified path\n" "Set the value of the Lustre or LNET parameter at the specified path\n"
"Use '-n' to disable printing of the key name when printing values."}, "Use '-n' to disable printing of parameter name when setting value\n"},
/* Debug commands */ /* Debug commands */
{"==== debugging control ====", jt_noop, 0, "debug"}, {"==== debugging control ====", jt_noop, 0, "debug"},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment