From: Kyr Shatskyy Date: Sat, 5 Apr 2025 18:39:16 +0000 (+0200) Subject: provision/downburst: install bind-utils for host command on centos X-Git-Tag: 1.2.2~2^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=46499f5a0cf7bb7071c576c2d226fcb431389eca;p=teuthology.git provision/downburst: install bind-utils for host command on centos Signed-off-by: Kyr Shatskyy --- diff --git a/teuthology/provision/downburst.py b/teuthology/provision/downburst.py index d12ff0c81..3dc3c2e82 100644 --- a/teuthology/provision/downburst.py +++ b/teuthology/provision/downburst.py @@ -266,7 +266,10 @@ class Downburst(object): if os_type in ('ubuntu', 'fedora'): user_info['packages'].append('python') if os_type in ('centos'): - user_info['packages'].append('python3-pip') + user_info['packages'].extend([ + 'python3-pip', + 'bind-utils', + ]) user_fd = tempfile.NamedTemporaryFile(delete=False, mode='wt') user_str = "#cloud-config\n" + yaml.safe_dump(user_info) user_fd.write(user_str)