This commit is contained in:
geos_one
2025-08-23 17:03:01 +02:00
parent 853b49b823
commit ef89b3e9c3
17 changed files with 385 additions and 0 deletions

26
debian/prerm vendored Normal file
View File

@@ -0,0 +1,26 @@
#!/bin/sh
NAME=realtek-r8168
VERSION=8.055.00
set -e
case "$1" in
remove|upgrade|deconfigure)
if [ "`dkms status -m $NAME`" ]; then
dkms remove -m $NAME -v $VERSION --all
fi
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0