Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2011-03-28 00:59:26 +0400
committerSebastien Pouliot <sebastien@ximian.com>2011-03-28 00:59:26 +0400
commit0da944a95c84990cbb1ea04414989810910b39c2 (patch)
tree5437db397041fd4cb8fdbc3dae9ea880fe7180c4 /man/crlupdate.1
parentf2f7c8f361d0745e6c051398b517f00b7537acf4 (diff)
Add new crlupdate tool
* man/Makefile.am: * man/crlupdate.1: * man/man.xml: Add new manual page for crlupdate * mcs/tools/security/Makefile: * mcs/tools/security/crlupdate.cs: Add new crlupdate tool * scripts/Makefile.am: Generate script wrapper for crlupdate
Diffstat (limited to 'man/crlupdate.1')
-rw-r--r--man/crlupdate.156
1 files changed, 56 insertions, 0 deletions
diff --git a/man/crlupdate.1 b/man/crlupdate.1
new file mode 100644
index 00000000000..8e20437b1aa
--- /dev/null
+++ b/man/crlupdate.1
@@ -0,0 +1,56 @@
+.\"
+.\" crlupdate manual page.
+.\"
+.\" Author:
+.\" Sebastien Pouliot <sebastien@ximian.com>
+.\"
+.\" Copyright (C) 2011 Novell, Inc (http://www.novell.com)
+.\"
+.TH Mono "crlupdate"
+.SH NAME
+crlupdate \- Mono Certficate Revocation List Downloader and Updater
+.SH SYNOPSIS
+.PP
+.B crlupdate [-m] [-v] [-f]
+.SH DESCRIPTION
+This tool allows the download of new, or update of existing, Certficate
+Revocation List (CRL) associated with the certificates present in the
+user (default) or machine stores. The CRL present in the stores are used
+to determine the validity of unexpired, trusted X.509 certificates.
+To ensure CRL are always fresh consider automating the updates using the
+\fIat\fR (or similar) command(s).
+.SH OPTIONS
+.TP
+.I "-m"
+Update CRL associated with certificates in the machine store. By default
+the tool works on the user store.
+.TP
+.I "-v"
+Verbose mode. Display extra information while downloading and updating
+the CRL.
+.TP
+.I "-f"
+Force the download of all CRL even if they are not normally due to be
+updated (i.e. nextUpdate is still in the future).
+
+.SH EXAMPLES
+.TP
+.B mono crlupdate.exe
+Download (if missing) or update (if existing and past due date) all CRL
+associated with certificates present in user store.
+.TP
+.B mono crlupdate.exe -f -m
+Force the download of every CRL associated with certificates present in
+the machine store. Note that the user running this needs read/write
+access to the machine store or not update will occur.
+
+.SH AUTHOR
+Written by Sebastien Pouliot
+.SH COPYRIGHT
+Copyright (C) 2011 Novell.
+.SH MAILING LISTS
+Visit http://lists.ximian.com/mailman/listinfo/mono-list for details.
+.SH WEB SITE
+Visit http://www.mono-project.com for details
+.SH SEE ALSO
+.BR certmgr(1), at(1)