summaryrefslogtreecommitdiff
path: root/debian/libsane.postinst
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2020-02-15 22:52:37 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2020-02-15 22:52:37 +0100
commit3e527f54331db2896ca1a60247a96830f6ca79e1 (patch)
tree04d2c055bb4f32185cdafe5550198e0f1f95bc27 /debian/libsane.postinst
parentab0254d049c7f870a0cf4971a310166271181e87 (diff)
Remove unused files and patches
Diffstat (limited to 'debian/libsane.postinst')
-rw-r--r--debian/libsane.postinst24
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/libsane.postinst b/debian/libsane.postinst
deleted file mode 100644
index 971103e..0000000
--- a/debian/libsane.postinst
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-set -e
-
-case "$1" in
- configure)
- # Add the scanner system group if it doesn't exist
- if ! getent group | grep -q "^scanner:"; then
- echo "Adding scanner group..."
- addgroup --quiet --system scanner || true
- fi
-
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "$0 called with unknown argument '$1'" >&2
- exit 1
- ;;
-esac
-
-
-#DEBHELPER#