feat: update pipx package installation to include ansible-lint and ansible-core
Some checks failed
Nix Format Check / check-format (push) Failing after 40s

This commit is contained in:
Menno van Leeuwen 2025-03-10 20:59:58 +01:00
parent 6eac725e9d
commit bec0970a4a
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,6 @@
- name: Define desired pipx packages
ansible.builtin.set_fact:
desired_pipx_packages:
- ansible
- ansible-lint
- shyaml
- name: Install/Upgrade pipx packages

View File

@ -267,7 +267,9 @@ setup_ansible() {
ensure_pipx
log_info "Installing Ansible..."
pipx install ansible || die "Failed to install Ansible"
attempt_package_install "ansible"
attempt_package_install "ansible-lint"
attempt_package_install "ansible-core"
}
check_command_availibility() {