d/xen-hypervisor-V.*: clean up unused files
authorMaximilian Engelhardt <maxi@daemonizer.de>
Wed, 9 Dec 2020 22:45:13 +0000 (23:45 +0100)
committerHans van Kranenburg <hans@knorrie.org>
Fri, 26 Feb 2021 19:10:29 +0000 (20:10 +0100)
These files are unused identical copies of the -V-F. files.

Signed-off-by: Maximilian Engelhardt <maxi@daemonizer.de>
[Hans van Kranenburg: split submitted patch in two]
Signed-off-by: Hans van Kranenburg <hans@knorrie.org>
debian/xen-hypervisor-V.postinst.vsn-in [deleted file]
debian/xen-hypervisor-V.postrm.vsn-in [deleted file]

diff --git a/debian/xen-hypervisor-V.postinst.vsn-in b/debian/xen-hypervisor-V.postinst.vsn-in
deleted file mode 100644 (file)
index 1540842..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-set -e
-
-case "$1" in
-    configure)
-        if command -v update-grub > /dev/null && [ -d /boot/grub ]; then
-            update-grub || :
-        fi
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-    ;;
-
-    *)
-       echo "postinst called with unknown argument \`$1'" >&2
-       exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/xen-hypervisor-V.postrm.vsn-in b/debian/xen-hypervisor-V.postrm.vsn-in
deleted file mode 100644 (file)
index 4833411..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-set -e
-
-case "$1" in
-    remove)
-        if command -v update-grub > /dev/null && [ -d /boot/grub ]; then
-            update-grub || :
-        fi
-    ;;
-
-    purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0