From d05660192c52190fc80ca5f5c23c36f35788d96c Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Wed, 21 Feb 2018 14:45:25 -0500 Subject: [PATCH] Add aarch64 to workers template. --- roles/openqa/worker/templates/workers.ini.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/openqa/worker/templates/workers.ini.j2 b/roles/openqa/worker/templates/workers.ini.j2 index a124777832..14351e0243 100644 --- a/roles/openqa/worker/templates/workers.ini.j2 +++ b/roles/openqa/worker/templates/workers.ini.j2 @@ -3,6 +3,8 @@ HOST = http://{{ openqa_hostname|default('localhost') }} {% if openqa_tap is defined and openqa_tap %} {% if ansible_architecture == 'ppc64' or ansible_architecture == 'ppc64le' %} WORKER_CLASS = tap,qemu_ppc64le,qemu_ppc64 +{% elif ansible_architecture == 'aarch64' %} +WORKER_CLASS = tap,qemu_aarch64,qemu_arm {% else %} WORKER_CLASS = tap,qemu_x86_64,qemu_i686,qemu_i586 {% endif %}