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:
parent
afe9e8122d
commit
56d5ec9e6d
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue