diff options
author | Steve Langasek <vorlon@debian.org> | 2010-09-02 17:14:05 -0700 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 21:48:26 -0800 |
commit | 11bc1acede77e0096af0255c2aa2c9ba35256de1 (patch) | |
tree | 7c7b281eabb19447597a65c29bdefe6488fc9711 | |
parent | 86dd40312382b31df6d3f00d3d9bf70a2161d6d8 (diff) | |
download | pam-11bc1acede77e0096af0255c2aa2c9ba35256de1.tar.gz pam-11bc1acede77e0096af0255c2aa2c9ba35256de1.tar.bz2 pam-11bc1acede77e0096af0255c2aa2c9ba35256de1.zip |
debian/local/pam-auth-update: sort additional module options before
writing them out, so that we don't wind up with a different config file
on every invocation. Thanks to Jim Paris <jim@jtan.com> for the patch.
Closes: #594123.
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | debian/local/pam-auth-update | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 8b31ddd0..5765e0cc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -27,6 +27,10 @@ pam (1.1.2-1) UNRELEASED; urgency=low compatibility when it's not already set. Closes: #552043. * debian/local/pam-auth-update: Don't try to pass embedded newlines to debconf; backslash-escape them instead and use CAPB escape. + * debian/local/pam-auth-update: sort additional module options before + writing them out, so that we don't wind up with a different config file + on every invocation. Thanks to Jim Paris <jim@jtan.com> for the patch. + Closes: #594123. -- Steve Langasek <vorlon@debian.org> Thu, 02 Sep 2010 10:23:42 -0700 diff --git a/debian/local/pam-auth-update b/debian/local/pam-auth-update index 2f9da0b3..7010cdca 100755 --- a/debian/local/pam-auth-update +++ b/debian/local/pam-auth-update @@ -271,7 +271,7 @@ sub merge_one_line $i--; } } - return $modline . " " . join(' ',@opts,keys(%{$adds})) . "\n"; + return $modline . " " . join(' ',@opts,sort keys(%{$adds})) . "\n"; } # return the lines for a given config name, type, and position in the stack |