~ubuntu-branches/ubuntu/breezy/pam/breezy

« back to all changes in this revision

Viewing changes to debian/libpam-doc.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2004-06-28 14:28:08 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040628142808-adikk7vtfg3pzcjw
Tags: 0.76-22
* Add uploaders
* Document location of repository
* Fix options containing arguments in pam_unix, Closes: #254904

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
case "$1" in
 
4
    configure)
 
5
        if command -v install-docs >/dev/null 2>&1; then
 
6
            echo -n "Registering PAM documentation..."
 
7
            install-docs -i /usr/share/doc-base/pam-admin-guide
 
8
            install-docs -i /usr/share/doc-base/pam-applications-guide
 
9
            install-docs -i /usr/share/doc-base/pam-modules-guide
 
10
            echo "done."
 
11
        fi
 
12
    ;;
 
13
esac
 
14
 
 
15
#DEBHELPER#
 
16