summaryrefslogtreecommitdiff
path: root/debian/libsane.postinst
diff options
context:
space:
mode:
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#