From: Sage Weil Date: Sun, 17 Feb 2013 03:36:45 +0000 (-0800) Subject: nuke: tolerate failed dpkg --configure -a/apt-get -f install X-Git-Tag: 1.1.0~2312^2~22 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a54200d444cfdbbf67bc2c168cc596a3151d9e3a;p=teuthology.git nuke: tolerate failed dpkg --configure -a/apt-get -f install Signed-off-by: Sage Weil --- diff --git a/teuthology/nuke.py b/teuthology/nuke.py index 258b8578b2..e7c04ca9c8 100644 --- a/teuthology/nuke.py +++ b/teuthology/nuke.py @@ -234,6 +234,8 @@ def dpkg_configure(ctx, log): 'sudo', 'dpkg', '--configure', '-a', run.Raw('&&'), 'sudo', 'apt-get', '-f', 'install', + run.Raw('||'), + ':', ], wait=False, )