feat: add task to ensure passlib is installed on the ansible controller

This commit is contained in:
2025-12-03 20:47:00 +01:00
parent d91f90f06e
commit 7e3f26f38c

View File

@@ -15,6 +15,15 @@
run_once: true
become: false
- name: "[PREFLIGHT] Ensure passlib is installed"
ansible.builtin.pip:
name: passlib
state: present
executable: "{{ controller_python | dirname }}/pip"
delegate_to: localhost
run_once: true
become: true
- name: "[PREFLIGHT] Check if running on Proxmox host"
ansible.builtin.stat:
path: "/etc/pve/nodes"