1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00

Update main.yml

This commit is contained in:
A Holt 2017-11-26 10:09:17 -05:00 committed by GitHub
parent afe9e8122d
commit 56d5ec9e6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +1,19 @@
# EXPERIMENTAL i686 CODE PATH
- name: Set kiwix source file name i686
set_fact:
kiwix_src_file: {{ kiwix_src_file_i686 }}
kiwix_src_file: "{{ kiwix_src_file_i686 }}"
kiwix_src_bin_only: False
when: ansible_machine == "i686"
- name: "Set Kiwix filename to d/l: {{ kiwix_src_file_linux64 }} (x86_64)"
set_fact:
kiwix_src_file: {{ kiwix_src_file_linux64 }}
kiwix_src_file: "{{ kiwix_src_file_linux64 }}"
kiwix_src_bin_only: True
when: ansible_machine == "x86_64"
- name: "Set Kiwix filename to d/l: {{ kiwix_src_file_armhf }} (armv6l or armv71)"
set_fact:
kiwix_src_file: {{ kiwix_src_file_armhf }}
kiwix_src_file: "{{ kiwix_src_file_armhf }}"
kiwix_src_bin_only: True
when: ansible_machine == "armv7l" or ansible_machine == "armv6l"