File: cracklib2-dev.postinst.in

package info (click to toggle)
cracklib2 2.7-8
  • links: PTS
  • area: main
  • in suites: potato
  • size: 424 kB
  • ctags: 113
  • sloc: ansic: 1,914; sh: 1,084; makefile: 166; perl: 63
file content (42 lines) | stat: -rw-r--r-- 810 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
#
# source:
#   /var/cvs/projects/debian/cracklib/debian/dpkg.src/cracklib2-dev.postinst.in,v
#
# revision:
#   @(#) cracklib2-dev.postinst.in,v 1.3 1999/03/29 15:30:22 jplejacq Exp
#
# copyright:
#   Copyright (C) 1998, 1999 Jean Pierre LeJacq <jplejacq@quoininc.com>
#
#   Distributed under the GNU GENERAL PUBLIC LICENSE.
#
# synopsis:
#   postinst configure <new-version>
#   postinst abort-upgrade <options>
#   postinst abort-remove <options>
#   postinst abort-deconfigure <options>
#
# description:
#   Debian post installation script.
#
# bugs:
#   No support for abort-*.
#
#   No sanity checking of inputs.


# main:
  set -e


  if [ "configure" = "${1}" ]
  then
    if [ -x "/usr/sbin/install-docs" ]
    then
      /usr/sbin/install-docs -i @@f_pkgdev_docbase@@
    fi
  fi


  exit 0