From: Peter Barabas Date: Mon, 7 Mar 2016 14:32:04 +0000 (+0100) Subject: Fix deploy.py return code X-Git-Tag: colorado.1.rc1~188^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F97%2F10997%2F2;p=fuel.git Fix deploy.py return code Fixes https://jira.opnfv.org/browse/FUEL-100 Change-Id: Ic2e01372778720cde84d83738d8b2c85b005124a Signed-off-by: Peter Barabas --- diff --git a/deploy/deploy.py b/deploy/deploy.py index bc1dfdb49..492c7596a 100755 --- a/deploy/deploy.py +++ b/deploy/deploy.py @@ -224,7 +224,8 @@ class AutoDeploy(object): self.install_fuel_master() if not self.fuel_only: return self.deploy_env() - return True + # Exit status + return 0 def run(self): check_if_root() @@ -235,7 +236,8 @@ class AutoDeploy(object): if self.cleanup: self.cleanup_execution_environment() return deploy_success - return True + # Exit status + return 0 def check_bridge(pxe_bridge, dha_path): with io.open(dha_path) as yaml_file: