Show all controller info

This commit is contained in:
David Hain 2018-05-21 12:05:31 -05:00
parent f344f5f636
commit 11eb976b74
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ def get_storcli_json(storcli_path):
# Check if storcli is installed
if os.path.isfile(storcli_path) and os.access(storcli_path, os.X_OK):
storcli_cmd = [storcli_path, '/call', 'show', 'J']
storcli_cmd = [storcli_path, '/call', 'show', 'all', 'J']
proc = subprocess.Popen(storcli_cmd, shell=False,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output_json = proc.communicate()[0]