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

Treat "Shared" parameter value other than NO as error on Blue Gene systems.

parent b6239b19
No related branches found
No related tags found
No related merge requests found
...@@ -596,6 +596,13 @@ static int _parse_part_spec(char *in_line) ...@@ -596,6 +596,13 @@ static int _parse_part_spec(char *in_line)
goto cleanup; goto cleanup;
} }
xfree(shared_str); xfree(shared_str);
#ifdef HAVE_BGL
if (shared_val != SHARED_NO) {
error("Illegal Shared parameter value for partition %s",
partition_name);
shared_val = SHARED_NO;
}
#endif
} }
if (state_str) { if (state_str) {
......
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