Skip to content

Commit fa356d6

Browse files
author
Kyr Shatskyy
committed
provision/downburst: install bind-utils for host command on centos
Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
1 parent 6e8589c commit fa356d6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

teuthology/provision/downburst.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,10 @@ def build_config(self):
266266
if os_type in ('ubuntu', 'fedora'):
267267
user_info['packages'].append('python')
268268
if os_type in ('centos'):
269-
user_info['packages'].append('python3-pip')
269+
user_info['packages'].extend([
270+
'python3-pip',
271+
'bind-utils',
272+
])
270273
user_fd = tempfile.NamedTemporaryFile(delete=False, mode='wt')
271274
user_str = "#cloud-config\n" + yaml.safe_dump(user_info)
272275
user_fd.write(user_str)

0 commit comments

Comments
 (0)