diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-02-15 22:52:37 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-02-15 22:52:37 +0100 |
commit | 3e527f54331db2896ca1a60247a96830f6ca79e1 (patch) | |
tree | 04d2c055bb4f32185cdafe5550198e0f1f95bc27 /debian/libsane.postinst | |
parent | ab0254d049c7f870a0cf4971a310166271181e87 (diff) |
Remove unused files and patches
Diffstat (limited to 'debian/libsane.postinst')
-rw-r--r-- | debian/libsane.postinst | 24 |
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# |