summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-05-07 12:13:47 +0200
committerAhmed Abdelhalim <[email protected]>2026-05-07 12:16:54 +0200
commit6d79109f08212e4fd55f89e4547ae66fc5d66e97 (patch)
tree48677e20621369a7ab69f293df46d98ebaf04653 /roles
parent3698f8103a053085c84f9c48fa450de4aa979f84 (diff)
Ignore linting issues inside chroot
Diffstat (limited to 'roles')
-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