]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Don't suppress stdout for most apt-get ops 409/head
authorZack Cerza <zack@redhat.com>
Mon, 19 Jan 2015 17:16:53 +0000 (10:16 -0700)
committerZack Cerza <zack@redhat.com>
Mon, 19 Jan 2015 17:16:53 +0000 (10:16 -0700)
Signed-off-by: Zack Cerza <zack@redhat.com>
teuthology/task/install.py

index 52e39aec90638f0dd0634c236957ee808952fa23..97d3db5a801b29014620e790bbf66e84bd406869 100644 (file)
@@ -385,7 +385,6 @@ def _update_deb_package_list_and_install(ctx, remote, debs, config):
                 'Dpkg::Options::="--force-confold"'),
             'install',
         ] + ['%s=%s' % (d, version) for d in debs],
-        stdout=StringIO(),
     )
     ldir = _get_local_dir(config, remote)
     if ldir:
@@ -622,7 +621,6 @@ def _remove_deb(ctx, config, remote, debs):
                 'Dpkg::Options::="--force-confold"'),
             'autoremove',
         ],
-        stdout=StringIO(),
     )
 
 
@@ -925,7 +923,6 @@ def _upgrade_deb_packages(ctx, config, remote, debs):
                 'Dpkg::Options::="--force-confold"'),
             'install',
         ] + ['%s=%s' % (d, version) for d in debs],
-        stdout=StringIO(),
     )