diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-05-07 12:13:47 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-05-07 12:16:54 +0200 |
| commit | 6d79109f08212e4fd55f89e4547ae66fc5d66e97 (patch) | |
| tree | 48677e20621369a7ab69f293df46d98ebaf04653 /roles/bootstrap/tasks/install-proxmox.yml | |
| parent | 3698f8103a053085c84f9c48fa450de4aa979f84 (diff) | |
Ignore linting issues inside chroot
Diffstat (limited to 'roles/bootstrap/tasks/install-proxmox.yml')
| -rw-r--r-- | roles/bootstrap/tasks/install-proxmox.yml | 2 |
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 |
