diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:03:56 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:03:56 +0000 |
commit | ad07a2b86334c23fe063be97e8dd44e586c324b4 (patch) | |
tree | bb0f3e91284adc84f813a6e46867915be34b704f /debian/kmod.postrm | |
parent | Adding upstream version 31+20240202. (diff) | |
download | kmod-ad07a2b86334c23fe063be97e8dd44e586c324b4.tar.xz kmod-ad07a2b86334c23fe063be97e8dd44e586c324b4.zip |
Adding debian version 31+20240202-2.debian/31+20240202-2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/kmod.postrm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/kmod.postrm b/debian/kmod.postrm new file mode 100644 index 0000000..43a8d9c --- /dev/null +++ b/debian/kmod.postrm @@ -0,0 +1,11 @@ +#!/bin/sh -e + +case "$1" in + purge) + rm -f /etc/modules + ;; +esac + +#DEBHELPER# + +exit 0 |