File: linux-image-6.12.38%2Bdeb13-cloud-amd64.prerm

package info (click to toggle)
linux-signed-amd64 6.12.38%2B1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 5,852 kB
  • sloc: sh: 177; makefile: 16
file content (14 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

version=6.12.38+deb13-cloud-amd64
image_path=/boot/vmlinuz-$version

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

linux-check-removal $version

linux-run-hooks image prerm $version $image_path -- "$@"

exit 0