collectd: turbostat is x86 only, it fails on Arm64

Change-Id: Icde3d4605200a1d2a8bad00922d726655632b8ca
This commit is contained in:
Matthias Runge 2018-06-27 11:03:56 +02:00
parent 8725e5b474
commit 3f8db42f1f
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,6 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'collectd-smart',
'collectd-snmp-agent',
'collectd-sysevent',
'collectd-turbostat',
'collectd-utils',
'collectd-virt',
'collectd-write_prometheus',
@ -39,7 +38,8 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% if base_arch =='x86_64' %}
{% set collectd_packages = collectd_packages + [
'collectd-hugepages',
'collectd-rdt'
'collectd-rdt',
'collectd-turbostat'
] %}
{% endif %}