From c47f784e3d19dec2fc99ff4d23fe314801d1f2dd Mon Sep 17 00:00:00 2001 From: Travis Rhoden Date: Tue, 31 Mar 2015 15:56:18 -0400 Subject: [PATCH] make install --repo handle multiple hosts The for loop was always returning after the first host Signed-off-by: Travis Rhoden --- ceph_deploy/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.47.3