2025-08-08 13:34:17 +03:00
|
|
|
- name: Get latest hola-proxy version
|
|
|
|
|
community.general.github_release:
|
|
|
|
|
user: Snawoot
|
|
|
|
|
repo: hola-proxy
|
|
|
|
|
action: latest_release
|
2025-08-09 11:47:58 +03:00
|
|
|
register: hola_version
|
2025-08-08 13:34:17 +03:00
|
|
|
|
2025-08-17 10:54:07 +03:00
|
|
|
- name: Installing hola-proxy {{ hola_version.tag }}
|
2025-08-08 13:34:17 +03:00
|
|
|
become: true
|
|
|
|
|
ansible.builtin.get_url:
|
|
|
|
|
url: "https://github.com/Snawoot/hola-proxy/releases/download/{{ hola_version.tag }}/hola-proxy.linux-amd64"
|
2025-08-24 00:08:44 +03:00
|
|
|
dest: "{{ bin_install_path }}/hola-proxy"
|
2025-08-08 13:34:17 +03:00
|
|
|
mode: a+x
|
|
|
|
|
force: true
|
|
|
|
|
|
|
|
|
|
- name: Get latest opera-proxy version
|
|
|
|
|
community.general.github_release:
|
|
|
|
|
user: Snawoot
|
|
|
|
|
repo: opera-proxy
|
|
|
|
|
action: latest_release
|
2025-08-09 11:47:58 +03:00
|
|
|
register: opera_version
|
2025-08-08 13:34:17 +03:00
|
|
|
|
2025-08-17 10:54:07 +03:00
|
|
|
- name: Installing opera-proxy {{ opera_version.tag }}
|
2025-08-08 13:34:17 +03:00
|
|
|
become: true
|
|
|
|
|
ansible.builtin.get_url:
|
2025-08-24 00:22:54 +03:00
|
|
|
url: "https://github.com/Snawoot/opera-proxy/releases/download/{{ opera_version.tag }}/opera-proxy.linux-amd64"
|
2025-08-24 00:08:44 +03:00
|
|
|
dest: "{{ bin_install_path }}/opera-proxy"
|
2025-08-08 13:34:17 +03:00
|
|
|
mode: a+x
|
|
|
|
|
force: true
|