Include lsb-release in base packages
For whatever reason, on Debian 12, without lsb-release the ansible_distribution_release variable is undefined, even though it isn't. To work around this, just ensure we always have lsb-release installed to provide a reliable OS version fact.
This commit is contained in:
parent
3dcaace183
commit
d52e59ea62
|
@ -93,7 +93,7 @@ case $( uname -m ) in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
# Supplemental packages (installed in chroot after debootstrap)
|
# Supplemental packages (installed in chroot after debootstrap)
|
||||||
suppkglist="firmware-linux,firmware-linux-nonfree,firmware-bnx2,firmware-bnx2x,ntp,ipmitool,acpid,acpi-support-base,lsscsi"
|
suppkglist="firmware-linux,firmware-linux-nonfree,firmware-bnx2,firmware-bnx2x,ntp,ipmitool,acpid,acpi-support-base,lsscsi,lsb-release"
|
||||||
|
|
||||||
# Modules to blacklist (known-faulty)
|
# Modules to blacklist (known-faulty)
|
||||||
target_module_blacklist=( "hpwdt" )
|
target_module_blacklist=( "hpwdt" )
|
||||||
|
|
Loading…
Reference in New Issue