1
0

Add rclone with eget and rclone docker plugin role

This commit is contained in:
2024-12-23 15:26:32 +03:00
parent 4cd6d8ff64
commit 87e13973ec
13 changed files with 172 additions and 5 deletions

View File

@ -1,8 +1,4 @@
---
# - name: 'Begin installation'
# ansible.builtin.debug:
# msg: 'Begin installation'
- name: 'Download eget from url "{{ eget_download_url }}"'
ansible.builtin.get_url:
url: '{{ eget_download_url }}'
@ -13,6 +9,7 @@
ansible.builtin.unarchive:
src: '{{ eget_download_dest }}'
dest: '/tmp'
list_files: true
remote_src: true
- name: 'Install eget binary'

View File

@ -8,7 +8,7 @@
ignore_errors: true
changed_when: false
- name: 'Check eget installed --version'
- name: 'Check eget installed version'
ansible.builtin.set_fact:
eget_need_install: '{{ not (eget_installed_output.rc == 0 and eget_version in eget_installed_output.stdout) }}'