diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:24:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:24:33 +0000 |
commit | 2459d9471afbe2b019744f4335f66025b73965de (patch) | |
tree | cc611a48837b355ff21f8e3715fab4f93e29ac43 /debian/pciutils.preinst | |
parent | Adding upstream version 1:3.9.0. (diff) | |
download | pciutils-2459d9471afbe2b019744f4335f66025b73965de.tar.xz pciutils-2459d9471afbe2b019744f4335f66025b73965de.zip |
Adding debian version 1:3.9.0-4.debian/1%3.9.0-4debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/pciutils.preinst')
-rw-r--r-- | debian/pciutils.preinst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/pciutils.preinst b/debian/pciutils.preinst new file mode 100644 index 0000000..8bac13e --- /dev/null +++ b/debian/pciutils.preinst @@ -0,0 +1,23 @@ +#!/bin/sh +# preinst script for pciutils + +set -e + +case "$1" in +install|upgrade) + for ext in new neww old + do + rm -f /var/lib/pciutils/pci.ids.$ext + done + ;; +abort-upgrade) + ;; +*) + echo "preinst called with unknown argument '$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |