diff options
author | Michael Shuler <michael@pbandjelly.org> | 2014-02-23 18:37:57 -0600 |
---|---|---|
committer | Michael Shuler <michael@pbandjelly.org> | 2014-02-23 18:37:57 -0600 |
commit | 2cb66316230fd934966daebe02890f9b90b48662 (patch) | |
tree | 7636d55f0b603607808aa4f8028897f3694c2cb5 /sbin/update-ca-certificates | |
parent | 1d54fe57b3f3aaea4689f1cab5a09dcbff006ffb (diff) | |
download | ca-certificates-2cb66316230fd934966daebe02890f9b90b48662.tar.gz |
Sort local CA certificate files on update-ca-certificates
Diffstat (limited to 'sbin/update-ca-certificates')
-rwxr-xr-x | sbin/update-ca-certificates | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates index 5375950..28d9a69 100755 --- a/sbin/update-ca-certificates +++ b/sbin/update-ca-certificates @@ -121,7 +121,7 @@ done # administrator. if [ -d "$LOCALCERTSDIR" ] then - find -L "$LOCALCERTSDIR" -type f -name '*.crt' | while read crt + find -L "$LOCALCERTSDIR" -type f -name '*.crt' | sort | while read crt do add "$crt" done |