Misc whitespace and formatting fixes for ca-init doc.

This commit is contained in:
Alex Bramley 2010-02-14 07:48:14 +00:00
parent 8a883205b1
commit 7528ef97dc

View file

@ -8,6 +8,8 @@ elif [ "$1" == "html" ]; then
elif [ "$1" == "text" ]; then elif [ "$1" == "text" ]; then
exec /usr/bin/pod2text -o $0 exec /usr/bin/pod2text -o $0
fi fi
echo "Unrecognised output format '$1', try man, html, or text."
exit 1
=pod =pod
@ -23,7 +25,7 @@ B<ca-init> [B<-h>] | [B<--help>]
=head1 DESCRIPTION =head1 DESCRIPTION
ca-init(1) reads the ca-scripts configuration file and generates an openssl(1) B<ca-init> reads the ca-scripts configuration file and generates an openssl(1)
configuration file and an X.509 certificate and key suitable for use as an configuration file and an X.509 certificate and key suitable for use as an
x509(1) certificate authority. The format of the ca-scripts configuration file x509(1) certificate authority. The format of the ca-scripts configuration file
is documented in ca-scripts.conf(5). is documented in ca-scripts.conf(5).
@ -75,7 +77,7 @@ before generating the certificates. Mutually exclusive to B<--crt-only>.
=head1 THE CA DIRECTORY STRUCTURE =head1 THE CA DIRECTORY STRUCTURE
B<ca-init> creates a number of subdirectories under the path specified in B<ca-init> creates a number of subdirectories under the path specified in
the mandatory configuration variable I<CA_HOME>. This path must exist before the mandatory configuration variable B<CA_HOME>. This path must exist before
B<ca-init> will run correctly. All files and directories under this path B<ca-init> will run correctly. All files and directories under this path
will be created with a restrictive umask of 0027, and in particular the CA will be created with a restrictive umask of 0027, and in particular the CA
private key will be created with permissions of 0400. private key will be created with permissions of 0400.
@ -152,3 +154,4 @@ Copyright 2009, 2010 Alex Bramley a.bramley@gmail.com
ca-create-cert(1), ca-scripts.conf(5), openssl(1ssl), ca(1ssl), req(1ssl), ca-create-cert(1), ca-scripts.conf(5), openssl(1ssl), ca(1ssl), req(1ssl),
x509(1ssl), config(5ssl), and x509v3_config(5ssl). x509(1ssl), config(5ssl), and x509v3_config(5ssl).
=cut