summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2018-04-05 17:59:16 -0500
committerMichael Shuler <michael@pbandjelly.org>2018-04-05 17:59:16 -0500
commit1bc87e0b41a04551a93d4e784e158b044c18792a (patch)
tree43b35a617c2178e5219a80d58c264f0962ebd3e4 /sbin
parent82051fd0037f9f1ba4dbb713fbe68e333523d498 (diff)
downloadca-certificates-1bc87e0b41a04551a93d4e784e158b044c18792a.tar.gz
Update openssl dependency to >= 1.1.0
Switch to `openssl rehash` and drop usage of `c_rehash` script
Diffstat (limited to 'sbin')
-rwxr-xr-xsbin/update-ca-certificates4
-rw-r--r--sbin/update-ca-certificates.84
2 files changed, 4 insertions, 4 deletions
diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates
index ac59ae9..2d553a5 100755
--- a/sbin/update-ca-certificates
+++ b/sbin/update-ca-certificates
@@ -174,9 +174,9 @@ then
# only run if set of files has changed
if [ "$verbose" = 0 ]
then
- c_rehash . > /dev/null
+ openssl rehash -compat . > /dev/null
else
- c_rehash .
+ openssl rehash -compat .
fi
fi
diff --git a/sbin/update-ca-certificates.8 b/sbin/update-ca-certificates.8
index a76541d..c60eab1 100644
--- a/sbin/update-ca-certificates.8
+++ b/sbin/update-ca-certificates.8
@@ -50,7 +50,7 @@ A summary of options is included below.
Show summary of options.
.TP
.B \-v, \-\-verbose
-Be verbose. Output \fBc_rehash\fP.
+Be verbose. Output \fBopenssl rehash\fP.
.TP
.B \-f, \-\-fresh
Fresh updates. Remove symlinks in /etc/ssl/certs directory.
@@ -69,7 +69,7 @@ Directory of CA certificates.
.I /usr/local/share/ca-certificates
Directory of local CA certificates (with .crt extension).
.SH SEE ALSO
-.BR c_rehash (1)
+.BR openssl (1)
.SH AUTHOR
This manual page was written by Fumitoshi UKAI <ukai@debian.or.jp>,
for the Debian project (but may be used by others).