mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
get_url 'timeout: "{{ download_timeout }}"' in 10 roles
This commit is contained in:
parent
a84cf2068c
commit
5f3708fe29
10 changed files with 28 additions and 4 deletions
|
|
@ -45,18 +45,21 @@
|
|||
get_url:
|
||||
url: https://github.com/iiab/php-stem/raw/main/so/stem-armhf-{{ php_version }}.so
|
||||
dest: /usr/lib/php/{{ php_extension }}/stem.so
|
||||
timeout: "{{ download_timeout }}"
|
||||
when: ansible_machine == "armv6l" or ansible_machine == "armv7l"
|
||||
|
||||
- name: Download https://github.com/iiab/php-stem/raw/main/so/stem-aarch64-{{ php_version }}.so to /usr/lib/php/{{ php_extension }}/stem.so (aarch64)
|
||||
get_url:
|
||||
url: https://github.com/iiab/php-stem/raw/main/so/stem-aarch64-{{ php_version }}.so
|
||||
dest: /usr/lib/php/{{ php_extension }}/stem.so
|
||||
timeout: "{{ download_timeout }}"
|
||||
when: ansible_machine == "aarch64"
|
||||
|
||||
- name: Download https://github.com/iiab/php-stem/raw/main/so/stem-x64-{{ php_version }}.so to /usr/lib/php/{{ php_extension }}/stem.so (x86_64)
|
||||
get_url:
|
||||
url: https://github.com/iiab/php-stem/raw/main/so/stem-x64-{{ php_version }}.so
|
||||
dest: /usr/lib/php/{{ php_extension }}/stem.so
|
||||
timeout: "{{ download_timeout }}"
|
||||
when: ansible_machine == "x86_64"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue