Skip to content
Snippets Groups Projects
Commit 5c6cddbc authored by caoyuan's avatar caoyuan
Browse files

Remove the unnecessary "if" condition

TrivialFix

Change-Id: Ib7f07b88055594e594604ed2c4471058719cba56
parent 277f6c05
No related branches found
No related tags found
No related merge requests found
......@@ -5,22 +5,11 @@ MAINTAINER {{ maintainer }}
{% import "macros.j2" as macros with context %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set kubetoolbox_packages = [
'jq',
'ceph-common',
'ipmitool'
] %}
{% elif base_distro in ['ubuntu', 'debian'] %}
{% set kubetoolbox_packages = [
'jq',
'ceph-common',
'ipmitool'
] %}
{% endif %}
{% set kubetoolbox_packages = [
'jq',
'ceph-common',
'ipmitool'
] %}
{{ macros.install_packages(kubetoolbox_packages | customizable("packages")) }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment