diff --git a/pyghmi/ipmi/command.py b/pyghmi/ipmi/command.py index 823f63c5..8202e54c 100644 --- a/pyghmi/ipmi/command.py +++ b/pyghmi/ipmi/command.py @@ -407,8 +407,7 @@ class Command(object): def reset_bmc(self): """Do a cold reset in BMC""" - - response = self.raw_command(netfn=6, command=2) + response = self.raw_command(netfn=6, command=2, retry=False) if 'error' in response: raise exc.IpmiException(response['error'])