From 46499f5a0cf7bb7071c576c2d226fcb431389eca Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Sat, 5 Apr 2025 20:39:16 +0200 Subject: [PATCH] provision/downburst: install bind-utils for host command on centos Signed-off-by: Kyr Shatskyy --- teuthology/provision/downburst.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/teuthology/provision/downburst.py b/teuthology/provision/downburst.py index d12ff0c812..3dc3c2e826 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) -- 2.39.5