File: libpam-mount.postinst

package info (click to toggle)
libpam-mount 2.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,312 kB
  • sloc: ansic: 6,266; sh: 5,298; makefile: 119; xml: 9
file content (19 lines) | stat: -rw-r--r-- 233 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

case "$1" in
    abort-upgrade|abort-remove|abort-deconfigure|configure)
        ;;

*)
    echo "postinst called with unknown argument \`$1'" >&2
    exit 1
;;
esac

pam-auth-update --package

#DEBHELPER#

exit 0