From 3cc7bb4b415e758786ed04d3b506031cd9f1971b Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Mon, 11 Aug 2025 00:33:29 +0200 Subject: Add the bootstrap role to install archlinux w/testing --- roles/bootstrap/tasks/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 roles/bootstrap/tasks/main.yml (limited to 'roles/bootstrap/tasks/main.yml') 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" -- cgit v1.2.3