Skip to content
Snippets Groups Projects
Commit 1b604b88 authored by Moe Jette's avatar Moe Jette
Browse files

hange output format of "sinfo -R" from "%35R %N" to "%50R %N".

parent 982b705e
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ documents those changes that are of interest to users and admins.
"man slurm.conf" for details.
-- Make default CryptoType=crypto/munge. OpenSSL is now completely optional.
-- Make default AuthType=auth/munge rather than auth/none.
-- Change output format of "sinfo -R" from "%35R %N" to "%50R %N".
* Changes in SLURM 1.4.0-pre1
=============================
......
.TH SINFO "1" "July 2007" "sinfo 1.3" "Slurm components"
.TH SINFO "1" "September 2008" "sinfo 1.4" "Slurm components"
.SH "NAME"
sinfo \- view information about SLURM nodes and partitions.
......@@ -94,7 +94,7 @@ when running with various options are
"%#N %.5D %9P %11T %.4c %.8z %.6m %.8d %.6w %8f %R"
.TP
.I "\-\-list\-reasons"
"%35R %N"
"%50R %N"
.TP
.I "\-\-long \-\-list\-reasons"
"%50R %6t %N"
......
......@@ -238,7 +238,7 @@ extern void parse_command_line(int argc, char *argv[])
} else if (params.list_reasons) {
params.format = params.long_output ?
"%50R %6t %N" :
"%35R %N";
"%50R %N";
} else if ((env_val = getenv ("SINFO_FORMAT"))) {
params.format = xstrdup(env_val);
......
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