Skip to content
Snippets Groups Projects
Commit eb21f9f2 authored by Remi Palancher's avatar Remi Palancher Committed by Danny Auble
Browse files

Update comments in sacctmgr dump header

parent f6b4928b
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,7 @@ documents those changes that are of interest to users and admins. ...@@ -7,6 +7,7 @@ documents those changes that are of interest to users and admins.
page. page.
-- Fix for regression in 14.03.5 with sacctmgr load when Parent has "'" -- Fix for regression in 14.03.5 with sacctmgr load when Parent has "'"
around it around it
-- Update comments in sacctmgr dump header
* Changes in Slurm 14.03.5 * Changes in Slurm 14.03.5
========================== ==========================
......
...@@ -1114,11 +1114,11 @@ extern int sacctmgr_dump_cluster (int argc, char *argv[]) ...@@ -1114,11 +1114,11 @@ extern int sacctmgr_dump_cluster (int argc, char *argv[])
if (fprintf(fd, if (fprintf(fd,
"# To edit this file start with a cluster line " "# To edit this file start with a cluster line "
"for the new cluster\n" "for the new cluster\n"
"# Cluster - cluster_name:MaxNodesPerJob=50\n" "# Cluster - 'cluster_name':MaxNodesPerJob=50\n"
"# Followed by Accounts you want in this fashion " "# Followed by Accounts you want in this fashion "
"(root is created by default)...\n" "(root is created by default)...\n"
"# Parent - root\n" "# Parent - 'root'\n"
"# Account - cs:MaxNodesPerJob=5:MaxJobs=4:" "# Account - 'cs':MaxNodesPerJob=5:MaxJobs=4:"
"MaxProcSecondsPerJob=20:FairShare=399:" "MaxProcSecondsPerJob=20:FairShare=399:"
"MaxWallDurationPerJob=40:Description='Computer Science':" "MaxWallDurationPerJob=40:Description='Computer Science':"
"Organization='LC'\n" "Organization='LC'\n"
...@@ -1128,14 +1128,14 @@ extern int sacctmgr_dump_cluster (int argc, char *argv[]) ...@@ -1128,14 +1128,14 @@ extern int sacctmgr_dump_cluster (int argc, char *argv[])
"Parent THAT HAS ALREADY \n" "Parent THAT HAS ALREADY \n"
"# BEEN CREATED before the account line in this " "# BEEN CREATED before the account line in this "
"fashion...\n" "fashion...\n"
"# Parent - cs\n" "# Parent - 'cs'\n"
"# Account - test:MaxNodesPerJob=1:MaxJobs=1:" "# Account - 'test':MaxNodesPerJob=1:MaxJobs=1:"
"MaxProcSecondsPerJob=1:FairShare=1:" "MaxProcSecondsPerJob=1:FairShare=1:"
"MaxWallDurationPerJob=1:" "MaxWallDurationPerJob=1:"
"Description='Test Account':Organization='Test'\n" "Description='Test Account':Organization='Test'\n"
"# To add users to a account add a line like this after a " "# To add users to a account add a line like this after a "
"Parent - line\n" "Parent - 'line'\n"
"# User - lipari:MaxNodesPerJob=2:MaxJobs=3:" "# User - 'lipari':MaxNodesPerJob=2:MaxJobs=3:"
"MaxProcSecondsPerJob=4:FairShare=1:" "MaxProcSecondsPerJob=4:FairShare=1:"
"MaxWallDurationPerJob=1\n") < 0) { "MaxWallDurationPerJob=1\n") < 0) {
exit_code = 1; exit_code = 1;
......
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