summaryrefslogtreecommitdiffstats
path: root/roles/bootstrap/tasks/install-proxmox.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/bootstrap/tasks/install-proxmox.yml')
-rw-r--r--roles/bootstrap/tasks/install-proxmox.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/bootstrap/tasks/install-proxmox.yml b/roles/bootstrap/tasks/install-proxmox.yml
index 57278b7..f523d9f 100644
--- a/roles/bootstrap/tasks/install-proxmox.yml
+++ b/roles/bootstrap/tasks/install-proxmox.yml
@@ -51,6 +51,7 @@
- "apt-get install -y {{ bootstrap_distro.packages | join(' ') }}"
- name: "Mount EFI partition inside chroot for grub-install"
+ # noqa: command-instead-of-module intentional because of chroot
ansible.builtin.command:
cmd: "mount --bind {{ mnt_boot_path }} {{ mnt_root_path }}/boot/efi"
changed_when: true
@@ -79,6 +80,7 @@
tags: ["molecule-notest"]
- name: "Unmount EFI partition from chroot"
+ # noqa: command-instead-of-module intentional because of chroot
ansible.builtin.command:
cmd: "umount {{ mnt_root_path }}/boot/efi"
changed_when: true