~ubuntu-branches/ubuntu/lucid/pam/lucid

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-08-07 09:50:02 UTC
  • Revision ID: james.westby@ubuntu.com-20090807095002-mqvu5f1f897wrw19
Tags: 1.0.1-10ubuntu1
* Merge from Debian, remaining changes:
  - debian/libpam-modules.postinst: Add PATH to /etc/environment if it's not
    present there or in /etc/security/pam_env.conf. (should send to Debian).
  - debian/libpam0g.postinst: only ask questions during update-manager when
    there are non-default services running.
  - debian/patches-applied/series: Ubuntu patches are as below ...
  - debian/patches-applied/ubuntu-fix_standard_types: Use standard u_int8_t
    type rather than __u8.
  - debian/patches-applied/ubuntu-no-error-if-missingok: add a new, magic
    module option 'missingok' which will suppress logging of errors by
    libpam if the module is not found.
  - debian/patches-applied/ubuntu-regression_fix_securetty: prompt for
    password on bad username.
  - debian/patches-applied/ubuntu-rlimit_nice_correction: Explicitly
    initialise RLIMIT_NICE rather than relying on the kernel limits.
  - debian/patches-applied/ubuntu-user_defined_environment: Look at
    ~/.pam_environment too, with the same format as
    /etc/security/pam_env.conf.  (Originally patch 100; converted to quilt.)
  - Change Vcs-Bzr to point at the Ubuntu branch.
  - debian/local/common-password, debian/pam-configs/unix: switch from
    "md5" to "sha512" as password crypt default.
  - Make libpam-modules depend on base-files (>= 5.0.0ubuntu6), to ensure
    run-parts does the right thing in /etc/update-motd.d.
  - debian/patches-applied/pam_motd-legal-notice: display the contents of
    /etc/legal once, then set a flag in the user's homedir to prevent showing
    it again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
        dh_installdebconf -i
100
100
        dh_installchangelogs -i $(BUILD_TREE)/ChangeLog
101
101
        dh_compress -i -X.html
 
102
        for pkg in  libpam-runtime; do \
 
103
                install -m 0644 -D $(d)/$$pkg.lintian $(d)/$$pkg/usr/share/lintian/overrides/$$pkg || exit; \
 
104
        done
 
105
 
102
106
        dh_link -i
103
107
        dh_fixperms -i
104
108
        dh_installdeb -i
131
135
        dh_installcron -a
132
136
 
133
137
        dh_installchangelogs -a $(BUILD_TREE)/ChangeLog
134
 
        for pkg in libpam0g libpam-modules libpam-runtime; do \
 
138
        for pkg in libpam0g libpam-modules ; do \
135
139
                install -m 0644 -D $(d)/$$pkg.lintian $(d)/$$pkg/usr/share/lintian/overrides/$$pkg || exit; \
136
140
        done
137
141