ansible-playbooks

another attempt to have everything organized ...
git clone https://git.e1e0.net/ansible-playbooks.git
Log | Files | Refs | README | LICENSE

main.yml (227B)


      1 ---
      2 go_arch_map:
      3   i386: '386'
      4   x86_64: 'amd64'
      5   aarch64: 'arm64'
      6   armv7l: 'armv7'
      7   armv6l: 'armv6'
      8 
      9 go_arch: "{{ go_arch_map[ansible_architecture] | default(ansible_architecture) }}"
     10 
     11 go_os: "{{ ansible_system | lower }}"