summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2014-02-23 18:37:57 -0600
committerMichael Shuler <michael@pbandjelly.org>2014-02-23 18:37:57 -0600
commit2cb66316230fd934966daebe02890f9b90b48662 (patch)
tree7636d55f0b603607808aa4f8028897f3694c2cb5
parent1d54fe57b3f3aaea4689f1cab5a09dcbff006ffb (diff)
downloadca-certificates-2cb66316230fd934966daebe02890f9b90b48662.tar.gz
Sort local CA certificate files on update-ca-certificates
-rwxr-xr-xsbin/update-ca-certificates2
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