diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:12:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:12:58 +0000 |
commit | 7546f4e8c2b383c87100ca18fc89afd4d70f60ac (patch) | |
tree | 3659ad5eefc696832af7fba2ebf37b822f8b9472 /debian/linux-image-5.10.0-28-mckinley.postinst | |
parent | Setting abiname to 28progress6u1. (diff) | |
download | linux-7546f4e8c2b383c87100ca18fc89afd4d70f60ac.tar.xz linux-7546f4e8c2b383c87100ca18fc89afd4d70f60ac.zip |
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/linux-image-5.10.0-28-mckinley.postinst | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-5.10.0-28-mckinley.postinst b/debian/linux-image-5.10.0-28-mckinley.postinst deleted file mode 100755 index 36e60a95e..000000000 --- a/debian/linux-image-5.10.0-28-mckinley.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=5.10.0-28-mckinley -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 |