diff options
author | Steve Langasek <vorlon@debian.org> | 2009-03-03 17:13:52 -0800 |
---|---|---|
committer | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 17:28:57 -0800 |
commit | 91010abe4f6ff5c1b9eb9510a6e4956d98042733 (patch) | |
tree | d97a217f5ccc6c278fafc1891334848599c35ed2 /debian/local | |
parent | faeffabdeec78344132789e8a3a80f560e408d74 (diff) | |
download | pam-91010abe4f6ff5c1b9eb9510a6e4956d98042733.tar.gz pam-91010abe4f6ff5c1b9eb9510a6e4956d98042733.tar.bz2 pam-91010abe4f6ff5c1b9eb9510a6e4956d98042733.zip |
pam-auth-update: set the umask, so we don't accidentally mark /etc/pam.d/common-* unreadable.
Diffstat (limited to 'debian/local')
-rwxr-xr-x | debian/local/pam-auth-update | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/local/pam-auth-update b/debian/local/pam-auth-update index 5b6b21b1..bc42f21b 100755 --- a/debian/local/pam-auth-update +++ b/debian/local/pam-auth-update @@ -162,6 +162,8 @@ EOF exit; } +umask(0022); + do { @conflicts = (); input($priority,$template); |