Adding support for arm64 systems

Adds support for `arm64` based systems (AWS `a1.*` instances).
This commit is contained in:
Kyle
2019-08-22 15:44:57 -07:00
committed by GitHub
parent 4b6f773bba
commit 341a00f16d

View File

@ -16,6 +16,12 @@
when: when:
- ansible_architecture == "x86_64" - ansible_architecture == "x86_64"
- name: "Debian | Set telegraf_agent_package_arch specific for arm64"
set_fact:
telegraf_agent_package_arch: "armhf"
when:
- ansible_architecture == "arm64"
- name: "Debian | Ensure the system can use the HTTPS transport for APT" - name: "Debian | Ensure the system can use the HTTPS transport for APT"
stat: stat:
path: /usr/lib/apt/methods/https path: /usr/lib/apt/methods/https