Put resolvd file into chroot to give chroot void network access
This commit is contained in:
parent
68e1cf4098
commit
d57196fb67
1 changed files with 13 additions and 1 deletions
14
host.yaml
14
host.yaml
|
@ -29,4 +29,16 @@
|
||||||
# ONLY run if this file does not exist (could use any rootfs file to check)
|
# ONLY run if this file does not exist (could use any rootfs file to check)
|
||||||
creates: "{{ mount_dir }}/etc/os-release"
|
creates: "{{ mount_dir }}/etc/os-release"
|
||||||
|
|
||||||
# - name: Mount /boot part into voidroot mount
|
# - name: Mount /boot part into voidroot mount
|
||||||
|
|
||||||
|
# TODO: Should be removed again at the end?
|
||||||
|
# However only after the whole PLAYBOOK has run not after this play
|
||||||
|
# not sure how to accomplish, see
|
||||||
|
# https://newbe.dev/run-an-ansible-handler-only-once-for-the-entire-playbook
|
||||||
|
# for possible solutions (especially lowest, hosts_to_restart example)
|
||||||
|
- name: Use archlinux resolvd for network access
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ mount_dir }}/etc/resolv.conf"
|
||||||
|
state: touch
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue