Random Project

Update Required for SSSU 10

In reply to the last comment the reason why the script errors on newer versions of SSU is simply that HP changed one of the lines that the program looks for when it comments because of the branding change, it’s changed from:
SSSU for HP StorageWorks Command View EVA
to
SSSU for HP P6000 Command View

I can’t post an update because the code isn’t mine, so simply download and open in a text editor, line 234 change from:

if output.pop(0).strip() != ‘SSSU for HP StorageWorks Command View EVA’: error = 1

to:

if output.pop(0).strip().find(‘SSSU for HP’) !=0: error=1

Then it should work ok.