feat(ubuntu): Refactor package installation, streamline GitHub deb installs

- Added 'become_password_file' to 'ansible.cfg' for privilege escalation handling.
- Removed separate installation tasks for 'atuin', 'eurkey', 'ghostty', 'git-delta', 'ripgrep', 'starship', 'veracrypt', and 'pacstall', consolidating them into 'curl.yml' and 'git_deb.yml'.
- Introduced 'git_deb.yml' for handling GitHub '.deb' installations dynamically using 'github_deb' variable.
- Improved error handling and pipe safety in curl-based installations ('set -o pipefail').
- Set proper permissions ('mode: 0600') for downloaded files in 'remove_ubuntu_banner.yml' and 'fira_code_fonts.yml'.
- Refactored 'github_releases.yml' to allow optional 'v' prefix handling in 'tag_name'.
- Updated 'main.yml' to remove redundant installations and streamline execution.
- Defined 'github_deb' list in 'vars/main.yml' to manage '.deb' package downloads dynamically.

These changes enhance maintainability, reduce redundancy, and improve package installation flexibility.

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2025-02-17 18:19:08 +01:00
parent f4a322ed5d
commit 39a2925bcd
17 changed files with 114 additions and 138 deletions

View File

@@ -91,3 +91,27 @@ github_releases:
repo: jesseduffield/lazygit
- name: lazydocker
repo: jesseduffield/lazydocker
project_version_placeholder: "<VERSION_PLACEHOLDER>"
github_deb:
- name: delta
repo: dandavison/delta
url: https://github.com/dandavison/delta/releases/download/{{ project_version_placeholder }}/git-delta_{{ project_version_placeholder }}_{{ aarch }}.deb
skip: false
- name: eurkey
repo: ""
url: https://eurkey.steffen.bruentjen.eu/download/debian/eurkey.deb
skip: false
- name: ripgrep
repo: BurntSushi/ripgrep
url: https://github.com/BurntSushi/ripgrep/releases/download/{{ project_version_placeholder }}/ripgrep_{{ project_version_placeholder }}-1_{{ aarch }}.deb
skip: false
- name: veracrypt
repo: veracrypt/Veracrypt
url: https://github.com/veracrypt/VeraCrypt/releases/download/VeraCrypt_{{ project_version_placeholder }}/veracrypt-{{ project_version_placeholder }}-{{ ansible_distribution }}-{{ ansible_distribution_version }}-{{ aarch }}.deb
skip: true
- name: ghostty
repo: mkasberg/ghostty-ubuntu
url: https://github.com/mkasberg/ghostty-ubuntu/releases/download/{{ project_version_placeholder }}/ghostty_{{ project_version_placeholder }}_{{ aarch }}_{{ ansible_distribution_version }}.deb
skip: true