Skip to content
This repository has been archived by the owner on Sep 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #124 from raphaelsalomao3/develop
Browse files Browse the repository at this point in the history
execute_runbook bugfix
  • Loading branch information
madflojo authored Sep 1, 2018
2 parents 3ef30b9 + d595252 commit 824f776
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions actioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,7 @@ def execute_runbook(action, target, config, logger):
logger.debug("Could not execute command {0}".format(cmd))

# Check results
if results:
if results.succeeded is True:
return True
else:
return False
else:
return False
return results.succeeded

def shutdown(signum, frame):
''' Shutdown this process '''
Expand Down

0 comments on commit 824f776

Please sign in to comment.