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
path: root/man
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2005-10-12 06:15:28 +0400
committerMiguel de Icaza <miguel@gnome.org>2005-10-12 06:15:28 +0400
commit82cdc7af9b44b893fd36b13eee8a377b5d787c42 (patch)
treee99d6ec8a681ae54de842fca398672fcf078fb4d /man
parentd0da4351eda4d7991f946159358d971b6df368c1 (diff)
Add Mozroots man page
svn path=/trunk/mono/; revision=51647
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am2
-rw-r--r--man/mono.16
-rw-r--r--man/mozroots.170
3 files changed, 75 insertions, 3 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index dd53bcdbbdb..f33c449aa6c 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -2,6 +2,6 @@ man_MANS = mcs.1 mono.1 monostyle.1 mono-config.5 sqlsharp.1 oldmono.1 ilasm.1 \
cert2spc.1 cilc.1 genxs.1 wsdl.1 disco.1 soapsuds.1 makecert.1 \
chktrust.1 setreg.1 sn.1 secutil.1 signcode.1 certmgr.1 monop.1 xsd.1 gacutil.1 \
macpack.1 mkbundle.1 dtd2xsd.1 permview.1 prj2make.1 mono-service.1 mono-shlib-cop.1 \
- al.1
+ al.1 mozroots.1
EXTRA_DIST = $(man_MANS)
diff --git a/man/mono.1 b/man/mono.1
index 83b5cd70dda..d724264ba8e 100644
--- a/man/mono.1
+++ b/man/mono.1
@@ -667,7 +667,9 @@ for more information.
~/.config/.mono/certs, /usr/share/.mono/certs
.PP
Contains Mono certificate stores for users / machine. See the certmgr(1)
-manual page for more information on managing certificate stores.
+manual page for more information on managing certificate stores and
+the mozroots(1) page for information on how to import the Mozilla root
+certificates into the Mono certificate store.
.PP
~/.config/.mono/keypairs, /usr/share/.mono/keypairs
.PP
@@ -686,6 +688,6 @@ http://www.mono-project.com/Mailing_Lists
.SH WEB SITE
http://www.mono-project.com
.SH SEE ALSO
-.BR mcs(1), mint(1), monodis(1), mono-config(5), certmgr(1).
+.BR certmgr(1), mcs(1), mint(1), monodis(1), mono-config(5), mozroots(1).
.PP
For ASP.NET-related documentation, see the xsp(1) manual page
diff --git a/man/mozroots.1 b/man/mozroots.1
new file mode 100644
index 00000000000..b3f2f729824
--- /dev/null
+++ b/man/mozroots.1
@@ -0,0 +1,70 @@
+.\"
+.\" mozroots man page
+.\" (C) 2005 Novell, Inc.
+.\" Author:
+.\" Miguel de Icaza (miguel@gnu.org)
+.\"
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.TH Mono "Mono 1.0"
+.SH NAME
+mozroots \- Download and import trusted root certificates from Mozilla's LXR into Mono's certificate store
+.SH SYNOPSIS
+.PP
+.B mozroots [--import [--machine] [--sync | --ask | --ask-add | --ask-remove]]
+.SH DESCRIPTION
+This program downloads the trusted root certificates from the Mozilla
+LXR web site into the Mono certificate store.
+.PP
+Mono by default does not ship with any default certificates and allows
+the user to pick its trusted certificates. The mozroots command will
+bring the Mozilla certificates into your local machine.
+.SH OPTIONS
+.TP
+.I "--import"
+Import the certificates into the trust store.
+.TP
+.I "--sync"
+Synchronize (add/remove) the trust store with the certificates.
+.TP
+.I "--ask"
+Always confirm before adding or removing trusted certificates.
+.TP
+.I "--ask-add"
+Always confirm before adding a new trusted certificate.
+.TP
+.I "--ask-remove"
+Always confirm before removing an existing trusted certificate.
+.SH ADVANCED OPTIONS
+.TP
+.I "--url url"
+Specify an alternative URL for downloading the trusted certificates
+(LXR source format).
+.TP
+.I "--file name"
+Do not download but use the specified file.
+.TP
+.I "--pkcs7 name"
+Export the certificates into a PKCS#7 file.
+.TP
+.I "--machine"
+Import the certificate in the machine trust store. The default is to
+import into the user store.
+.TP
+.I "--quiet"
+Limit console output to errors and confirmations messages.
+.SH FILES
+.PP
+~/.config/.mono/certs, /usr/share/.mono/certs
+.PP
+Contains Mono certificate stores for users / machine. See the certmgr(1)
+manual page for more information on managing certificate stores.
+.SH MAILING LISTS
+Mailing lists are listed at the
+http://www.mono-project.com/Mailing_Lists
+.SH WEB SITE
+http://www.mono-project.com
+.SH SEE ALSO
+.BR mono(1), certmgr(1).