update certwatch man page (#618421)

Resolves: rhbz#618421
This commit is contained in:
Joe Orton 2014-01-27 13:24:24 +00:00
parent 3c5bc63a88
commit 7e9f7dac60
2 changed files with 34 additions and 8 deletions

View File

@ -30,7 +30,7 @@
<cmdsynopsis> <cmdsynopsis>
<command>certwatch</command> <command>certwatch</command>
<arg choice="opt">OPTION...</arg> <arg choice="opt">OPTION...</arg>
<arg choice="plain"><replaceable>filename</replaceable></arg> <arg choice="plain"><replaceable>certname</replaceable></arg>
</cmdsynopsis> </cmdsynopsis>
</refsynopsisdiv> </refsynopsisdiv>
@ -41,8 +41,8 @@
warning mail when an SSL certificate is about to expire.</para> warning mail when an SSL certificate is about to expire.</para>
<para>The program has two modes of operation: normal mode and <para>The program has two modes of operation: normal mode and
quiet mode. In normal mode, the certificate given by the quiet mode. In normal mode, the certificate identified by the
<replaceable>filename</replaceable> argument is examined, and a <replaceable>certname</replaceable> argument is examined, and a
warning email is issued to standard output if the certificate is warning email is issued to standard output if the certificate is
outside its validity period, or approaching expiry. If the outside its validity period, or approaching expiry. If the
certificate cannot be found, or any errors occur whilst parsing certificate cannot be found, or any errors occur whilst parsing
@ -50,8 +50,13 @@
produced. In quiet mode, no output is given, but the exit status produced. In quiet mode, no output is given, but the exit status
can still be used.</para> can still be used.</para>
<para>The certificate can be specified by its nickname or by a <para>The certificate can be specified in one of two ways. If the
path to the containing file.</para> <option>--configdir</option> option is used, the
<replaceable>certname</replaceable> parameter is used as a
nickname to identify a certificate within an NSS database.
Otherwise, the <replaceable>certname</replaceable> parameter is
treated as a filename containing a certificate in OpenSSL "PEM"
format.</para>
</refsect1> </refsect1>
@ -90,11 +95,29 @@
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term><option>--directory <replaceable>cert-directory</replaceable></option>, <term><option>--configdir <replaceable>cert-directory</replaceable></option>,
<option>-d <replaceable>cert-directory</replaceable></option></term> <option>-d <replaceable>cert-directory</replaceable></option></term>
<listitem><simpara>Specify the database directory containing the certificate <listitem><simpara>Specify the database directory containing the certificate
and key database files. The default is yet to be determined.</simpara></listitem> and key database files.</simpara></listitem>
</varlistentry>
<varlistentry>
<term><option>--certdbprefix <replaceable>prefix</replaceable></option>,
<option>-c <replaceable>prefix</replaceable></option></term>
<listitem><simpara>If <option>--configdir</option> is used,
specify the prefix used for the certificate database within
the database directory.</simpara></listitem>
</varlistentry>
<varlistentry>
<term><option>--keydbprefix <replaceable>prefix</replaceable></option>,
<option>-c <replaceable>prefix</replaceable></option></term>
<listitem><simpara>If <option>--configdir</option> is used,
specify the prefix used for the key database within the
database directory.</simpara></listitem>
</varlistentry> </varlistentry>
</variablelist> </variablelist>

View File

@ -4,7 +4,7 @@
Summary: SSL certificate and key management utilities Summary: SSL certificate and key management utilities
Name: crypto-utils Name: crypto-utils
Version: 2.4.1 Version: 2.4.1
Release: 47%{?dist} Release: 48%{?dist}
Group: Applications/System Group: Applications/System
# certwatch.c is GPLv2 # certwatch.c is GPLv2
# pemutil.c etc are (MPLv1.1+ or GPLv2+ or LPGLv2+) # pemutil.c etc are (MPLv1.1+ or GPLv2+ or LPGLv2+)
@ -135,6 +135,9 @@ chmod -R u+w $RPM_BUILD_ROOT
%{perl_vendorarch}/auto/Crypt %{perl_vendorarch}/auto/Crypt
%changelog %changelog
* Mon Jan 27 2014 Joe Orton <jorton@redhat.com> - 2.4.1-48
- update certwatch man page (#618421)
* Mon Jan 27 2014 Joe Orton <jorton@redhat.com> - 2.4.1-47 * Mon Jan 27 2014 Joe Orton <jorton@redhat.com> - 2.4.1-47
- genkey: escape passwords properly (#980859) - genkey: escape passwords properly (#980859)
- genkey: escape commas in subject (#803305) - genkey: escape commas in subject (#803305)