Skip to content

Commit

Permalink
Corrected Node name ID
Browse files Browse the repository at this point in the history
in DefaultProfile.py

fixes issue # 457

Signed-off-by: Deb Rezanka <[email protected]>
  • Loading branch information
Deb Rezanka committed Aug 9, 2016
1 parent 69205ba commit 584c641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylib/Stages/Profile/DefaultProfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self):
self.options['kernelVersion'] = (True, "Kernel version string", ["uname", "-v"])
self.options['machineName'] = (True, "Machine name", ["uname", "-m"])
self.options['processorType'] = (True, "Processor type", ["uname", "-p"])
self.options['nodeName'] = (True, "Kernel version string", ["uname", "-n"])
self.options['nodeName'] = (True, "Node name", ["uname", "-n"])
return

def activate(self):
Expand Down

0 comments on commit 584c641

Please sign in to comment.