]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
provision/downburst: install bind-utils for host command on centos
authorKyr Shatskyy <kyrylo.shatskyy@clyso.com>
Sat, 5 Apr 2025 18:39:16 +0000 (20:39 +0200)
committerKyr Shatskyy <kyrylo.shatskyy@clyso.com>
Thu, 21 Aug 2025 22:57:54 +0000 (00:57 +0200)
Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
teuthology/provision/downburst.py

index d12ff0c81254b8ecbcbe9cd6cd8bde8ddd58ccae..3dc3c2e826a325f8cac5879d99cd7f7e062db4ca 100644 (file)
@@ -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)