diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-05-03 23:37:30 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-05-03 23:37:30 +0200 |
| commit | 2de4321b014e8f95b7d7450f78048ffaa7a1a703 (patch) | |
| tree | 73420ef7a61a6bd7171b88b93f79433b626dc274 /roles/bootstrap/tasks/main.yml | |
| parent | 59dc46968fff0c0459ff117b54034c60c491b56f (diff) | |
Add proxmox install support
Using debian live ISO instead of proxmox live ISO, since using the
proxmox ISO didn't allow automating the setup after connecting to the
network.
Diffstat (limited to 'roles/bootstrap/tasks/main.yml')
| -rw-r--r-- | roles/bootstrap/tasks/main.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/roles/bootstrap/tasks/main.yml b/roles/bootstrap/tasks/main.yml index 50e2ce2..41ec0eb 100644 --- a/roles/bootstrap/tasks/main.yml +++ b/roles/bootstrap/tasks/main.yml @@ -26,7 +26,11 @@ - name: "Install raspberry" ansible.builtin.include_tasks: "install-raspberry.yml" - when: ansible_facts['distribution'] == "Debian" and ansible_facts['architecture'] == "aarch64" + when: ansible_facts['distribution'] == "Debian" and bootstrap_pi + + - name: "Install proxmox" + ansible.builtin.include_tasks: "install-proxmox.yml" + when: ansible_facts['distribution'] == "Debian" and bootstrap_proxmox - name: "Ensure ansible dependencies are installed in chroot" ansible.builtin.command: |
