--- - name: mkdir /mnt/gentoo ansible.builtin.file: path: /mnt/gentoo state: directory tags: - mount - early-mount - name: mount / ansible.builtin.command: "mount LABEL=ROOT /mnt/gentoo" tags: - mount - early-mount - name: mkdir /mnt/gentoo/boot ansible.builtin.file: path: /mnt/gentoo/boot state: directory tags: - mount - early-mount - name: mount /boot ansible.builtin.command: "mount LABEL=BOOT /mnt/gentoo/boot" tags: - mount - early-mount - name: mkdir /mnt/gentoo/boot/efi ansible.builtin.file: path: /mnt/gentoo/boot/efi state: directory tags: - mount - early-mount - name: mount /boot/efi ansible.builtin.command: "mount LABEL=EFI /mnt/gentoo/boot/efi" tags: - mount - early-mount - name: mkdir /mnt/gentoo/tmp ansible.builtin.file: path: /mnt/gentoo/tmp state: directory mode: '01777' tags: - mount - early-mount