mirror of
https://github.com/atosatto/ansible-minio.git
synced 2024-11-22 11:25:11 +01:00
9317bcdd6b
Move go_arch mapping to vars.
10 lines
187 B
YAML
10 lines
187 B
YAML
---
|
|
go_arch_map:
|
|
i386: '386'
|
|
x86_64: 'amd64'
|
|
aarch64: 'arm64'
|
|
armv7l: 'arm'
|
|
armv6l: 'arm6vl'
|
|
|
|
go_arch: "{{ go_arch_map[ansible_architecture] | default(ansible_architecture) }}"
|