Your IP : 216.73.216.81


Current Path : /proc/288219/root/var/lib/dpkg/info/
Upload File :
Current File : //proc/288219/root/var/lib/dpkg/info/linux-image-6.1.0-37-amd64.prerm

#!/bin/sh -e

version=6.1.0-37-amd64
image_path=/boot/vmlinuz-$version

if [ "$1" != remove ]; then
    exit 0
fi

linux-check-removal $version

if [ -d /etc/kernel/prerm.d ]; then
    DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \
	      --arg=$image_path /etc/kernel/prerm.d
fi

exit 0