1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00

Update kiwix_install.yml

This commit is contained in:
A Holt 2017-11-26 16:14:44 -05:00 committed by GitHub
parent 771dda2db8
commit f9d9f5746d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,7 @@
# 2. INSTALL KIWIX-TOOLS EXECUTABLES IF kiwix_force_install
# (We get a whole web server for i686 but only kiwix execs for linux64 & armhf)
- name: Unarchive Kiwix to permanent location (bin_only, i.e. NOT i686)
- name: Unarchive Kiwix binaries to permanent location (NOT i686)
unarchive:
src: "{{ downloads_dir }}/{{ kiwix_src_file }}"
dest: "{{ iiab_base }}/kiwix/bin"
@ -68,7 +68,7 @@
group: root
when: kiwix_src_bin_only and kiwix_force_install
- name: Unarchive kiwix*i686.tar.bz2 to /tmp (NOT bin_only, i.e. i686)
- name: Unarchive kiwix*i686.tar.bz2 to /tmp (i686)
unarchive:
src: "{{ downloads_dir }}/{{ kiwix_src_file }}"
dest: /tmp
@ -77,7 +77,7 @@
group: root
when: not kiwix_src_bin_only and kiwix_force_install
- name: Move /tmp/kiwix*i686/bin/* to permanent location /opt/iiab/kiwix/bin (NOT bin_only, i.e. i686)
- name: Move /tmp/kiwix*i686/bin/* to permanent location /opt/iiab/kiwix/bin (i686)
shell: "mv /tmp/kiwix*i686/bin/* /opt/iiab/kiwix/bin/"
when: not kiwix_src_bin_only and kiwix_force_install