diff options
author | Steve Langasek <vorlon@debian.org> | 2009-03-03 17:15:00 -0800 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 18:44:02 -0800 |
commit | d262a04c3e1c5fccb05ea6e1f749068d5e064a02 (patch) | |
tree | c20cbeab90ae73b0539940c00f491948db93ae08 /debian/local | |
parent | a0c6def57d9d9788a157873b382f2d47d707a904 (diff) | |
parent | 91010abe4f6ff5c1b9eb9510a6e4956d98042733 (diff) | |
download | pam-d262a04c3e1c5fccb05ea6e1f749068d5e064a02.tar.gz pam-d262a04c3e1c5fccb05ea6e1f749068d5e064a02.tar.bz2 pam-d262a04c3e1c5fccb05ea6e1f749068d5e064a02.zip |
pam-auth-update: set the umask, so we don't accidentally mark
/etc/pam.d/common-* unreadable. Thanks to Martin Krafft for catching.
Closes: #518042.
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 3aabe113..42690850 100755 --- a/debian/local/pam-auth-update +++ b/debian/local/pam-auth-update @@ -163,6 +163,8 @@ EOF exit; } +umask(0022); + do { @conflicts = (); input($priority,$template); |