summarylogtreecommitdiffstats
path: root/dracut-remove
blob: be3180b058914aeda95deb9d9731c940d7b32023 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash -e

while read -r line; do
	if [[ "${line}" == */pkgbase ]]; then
		read -r pkgbase < "/${line}"
		rm -f "/boot/vmlinuz-${pkgbase}" "/boot/initramfs-${pkgbase}.img" "/boot/initramfs-${pkgbase}-fallback.img"
	fi
done