diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-08-11 00:33:29 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-08-11 00:33:29 +0200 |
| commit | 3cc7bb4b415e758786ed04d3b506031cd9f1971b (patch) | |
| tree | 2e60192ae61fca19022d9e1b3075edf75e06fe61 /roles/bootstrap/tasks/main.yml | |
| parent | aeaa724705363ca104ab4770d844e396795af3ea (diff) | |
Add the bootstrap role to install archlinux w/testing
Diffstat (limited to 'roles/bootstrap/tasks/main.yml')
| -rw-r--r-- | roles/bootstrap/tasks/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/bootstrap/tasks/main.yml b/roles/bootstrap/tasks/main.yml new file mode 100644 index 0000000..fbc3de5 --- /dev/null +++ b/roles/bootstrap/tasks/main.yml @@ -0,0 +1,9 @@ +--- +- name: "Set root,boot partition paths" + ansible.builtin.set_fact: + mnt_boot_path: "{{ partition_boot.mount_path }}" + mnt_root_path: "{{ partition_root.mount_path }}" + +- name: "Install archlinux" + ansible.builtin.include_tasks: "install-archlinux.yml" + when: ansible_os_family == "Archlinux" |
