Skip to content

Commit 60632a6

Browse files
committed
task/install: don't attempt to handle strings for extra_system_packages
To the best of my knowledge, extra_system_packages has never accepted a string as a value -- whether at the top level (i.e. on the install task itself) or on a particular project (e.g. ceph). Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
1 parent 46012fc commit 60632a6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

teuthology/task/install/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,8 +430,6 @@ def _override_extra_system_packages(config, project, install_overrides):
430430

431431
if isinstance(extra_overrides, list):
432432
extra_overrides = dict(deb=extra_overrides, rpm=extra_overrides)
433-
elif isinstance(extra, str):
434-
e = dict(deb=[extra], rpm=[extra])
435433

436434
config['extra_system_packages'] = teuthology.deep_merge(e, extra_overrides)
437435

0 commit comments

Comments
 (0)