Do not rebuild initramfs for containers

Containers do not have an initramfs so this is not useful, and fails
for Centos-7 with:

Can't write to /boot: Directory /boot does not exist or is not accessible.

Change-Id: Ibc6ff871ad6984d4e0f29693f4827f57169aef92
This commit is contained in:
Jonathan Rosser 2020-05-18 19:50:20 +01:00
parent f8fafbbb7a
commit 51daac22c6
1 changed files with 9 additions and 1 deletions

View File

@ -28,7 +28,7 @@
- name: (RE)Gather facts post setup
setup:
gather_subset: "network"
gather_subset: "network,hardware,virtual"
listen: Restart systemd-networkd
- name: Restart systemd-resolved
@ -44,3 +44,11 @@
- name: Update initramfs
command: "{{ systemd_networkd_update_initramfs }}"
when:
- ansible_virtualization_type != "systemd-nspawn"
- ansible_virtualization_type != "lxc"
- ansible_virtualization_type != "lxd"
- ansible_virtualization_type != "podman"
- ansible_virtualization_type != "docker"
- ansible_virtualization_type != "systemd_container"
- ansible_virtualization_type != "container"