~ubuntu-branches/ubuntu/saucy/curl/saucy-proposed

« back to all changes in this revision

Viewing changes to docs/mk-ca-bundle.1

  • Committer: Package Import Robot
  • Author(s): Ubuntu Merge-o-Matic
  • Date: 2013-08-12 15:39:32 UTC
  • mfrom: (3.4.41 sid)
  • Revision ID: package-import@ubuntu.com-20130812153932-pmn0qwvy9vghe66x
Tags: 7.32.0-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
* Fixes freeipa-client join. (LP: #1220928)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.\" **************************************************************************
2
 
.\" *                                  _   _ ____  _
3
 
.\" *  Project                     ___| | | |  _ \| |
4
 
.\" *                             / __| | | | |_) | |
5
 
.\" *                            | (__| |_| |  _ <| |___
6
 
.\" *                             \___|\___/|_| \_\_____|
7
 
.\" *
8
 
.\" * Copyright (C) 2008 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
9
 
.\" *
10
 
.\" * This software is licensed as described in the file COPYING, which
11
 
.\" * you should have received as part of this distribution. The terms
12
 
.\" * are also available at http://curl.haxx.se/docs/copyright.html.
13
 
.\" *
14
 
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 
.\" * copies of the Software, and permit persons to whom the Software is
16
 
.\" * furnished to do so, under the terms of the COPYING file.
17
 
.\" *
18
 
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 
.\" * KIND, either express or implied.
20
 
.\" *
21
 
.\" **************************************************************************
22
 
.\"
23
 
.TH mk-ca-bundle 1 "5 Jan 2013" "version 1.17" "mk-ca-bundle manual"
24
 
.SH NAME
25
 
mk-ca-bundle \- convert mozilla's certdata.txt to PEM format
26
 
.SH SYNOPSIS
27
 
mk-ca-bundle [bilnqtuv]
28
 
.I [outputfile]
29
 
.SH DESCRIPTION
30
 
The mk-ca-bundle tool downloads the certdata.txt file from Mozilla's source
31
 
tree over HTTP, then parses certdata.txt and extracts CA Root Certificates
32
 
into PEM format.  These are then processed with the OpenSSL commandline tool
33
 
to produce the final ca-bundle file.
34
 
 
35
 
The default \fIoutputfile\fP name is \fBca-bundle.crt\fP. By setting it to '-'
36
 
(a single dash) you will get the output sent to STDOUT instead of a file.
37
 
 
38
 
The PEM format this scripts uses for output makes the result readily available
39
 
for use by just about all OpenSSL or GnuTLS powered applications, such as
40
 
curl, wget and more.
41
 
.SH OPTIONS
42
 
The following options are supported:
43
 
.IP -b
44
 
backup an existing version of \fIoutputfilename\fP
45
 
.IP -f
46
 
force rebuild even if certdata.txt is current (Added in version 1.17)
47
 
.IP -i
48
 
print version info about used modules
49
 
.IP -l
50
 
print license info about certdata.txt
51
 
.IP -n
52
 
no download of certdata.txt (to use existing)
53
 
.IP -q
54
 
be really quiet (no progress output at all)
55
 
.IP -t
56
 
include plain text listing of certificates
57
 
.IP -u
58
 
unlink (remove) certdata.txt after processing
59
 
.IP -v
60
 
be verbose and print out processed CAs
61
 
.SH EXIT STATUS
62
 
Returns 0 on success. Returns 1 if it fails to download data.
63
 
.SH SEE ALSO
64
 
.BR curl (1)
65
 
.SH HISTORY
66
 
\fBmk-ca-bundle\fP is a command line tool that is shipped as part of every
67
 
curl and libcurl release (see http://curl.haxx.se/). It was originally based
68
 
on the parse-certs script written by Roland Krikava and was later much
69
 
improved by Guenter Knauf.  This manual page was written by Jan Schaumann
70
 
\&<jschauma@netmeister.org>.