1
0

Add utils for backups: task. restic. gobaclup

This commit is contained in:
Anton Vakhrushev 2025-05-02 10:57:42 +03:00
parent 676f6626f2
commit 132da79fab
Signed by: av
GPG Key ID: F5BF52FC352E255A

View File

@ -21,12 +21,27 @@
eget_version: '1.3.4' eget_version: '1.3.4'
eget_install_path: '{{ eget_bin_path }}' eget_install_path: '{{ eget_bin_path }}'
- name: 'Install rclone with eget' - name: 'Install rclone'
ansible.builtin.command: ansible.builtin.command:
cmd: '{{ eget_bin_path }} rclone/rclone --quiet --upgrade-only --to {{ eget_install_dir }} --tag v1.69.2 --asset zip' cmd: '{{ eget_bin_path }} rclone/rclone --quiet --upgrade-only --to {{ eget_install_dir }} --asset zip --tag v1.69.2'
changed_when: false changed_when: false
- name: 'Install btop with eget' - name: 'Install btop'
ansible.builtin.command: ansible.builtin.command:
cmd: '{{ eget_bin_path }} aristocratos/btop --quiet --upgrade-only --to {{ eget_install_dir }} --tag v1.4.2' cmd: '{{ eget_bin_path }} aristocratos/btop --quiet --upgrade-only --to {{ eget_install_dir }} --tag v1.4.2'
changed_when: false changed_when: false
- name: 'Install restic'
ansible.builtin.command:
cmd: '{{ eget_bin_path }} restic/restic --quiet --upgrade-only --to {{ eget_install_dir }} --tag v0.18.0'
changed_when: false
- name: 'Install gobackup'
ansible.builtin.command:
cmd: '{{ eget_bin_path }} gobackup/gobackup --quiet --upgrade-only --to {{ eget_install_dir }} --tag v2.14.0'
changed_when: false
- name: 'Install task'
ansible.builtin.command:
cmd: '{{ eget_bin_path }} go-task/task --quiet --upgrade-only --to {{ eget_install_dir }} --asset tar.gz --tag v3.43.3'
changed_when: false