From: Alfredo Deza Date: Mon, 28 Oct 2013 14:56:26 +0000 (-0400) Subject: tell wget to not stop on zero for debian X-Git-Tag: v1.3~8^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b4e3cd1405ae42017efad342948d0b6b85c75aed;p=ceph-deploy.git tell wget to not stop on zero for debian Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/hosts/debian/install.py b/ceph_deploy/hosts/debian/install.py index 5125d8f..48eedcc 100644 --- a/ceph_deploy/hosts/debian/install.py +++ b/ceph_deploy/hosts/debian/install.py @@ -33,7 +33,8 @@ def install(distro, version_kind, version, adjust_repos): '-O-', "'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/{key}.asc'".format(key=key), "| apt-key add -", - ] + ], + stop_on_nonzero=False, ) if version_kind == 'stable':