mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-25 05:05:13 +02:00
10 lines
176 B
Bash
10 lines
176 B
Bash
#!/bin/sh
|
|
#
|
|
# Kernel post-remove hook for dracut.
|
|
#
|
|
# Arguments passed to this script: $1 pkgname, $2 version.
|
|
#
|
|
PKGNAME="$1"
|
|
VERSION="$2"
|
|
|
|
rm -f boot/initramfs-${VERSION}.img
|