From: Travis Rhoden Date: Tue, 31 Mar 2015 19:56:18 +0000 (-0400) Subject: make install --repo handle multiple hosts X-Git-Tag: v1.5.23~4^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F273%2Fhead;p=ceph-deploy.git make install --repo handle multiple hosts The for loop was always returning after the first host Signed-off-by: Travis Rhoden --- diff --git a/ceph_deploy/install.py b/ceph_deploy/install.py index 1606538..79a1c54 100644 --- a/ceph_deploy/install.py +++ b/ceph_deploy/install.py @@ -233,7 +233,7 @@ def install_repo(args): distro.codename ) - return custom_repo(distro, args, cd_conf, rlogger, install_ceph=False) + custom_repo(distro, args, cd_conf, rlogger, install_ceph=False) def uninstall(args):