Jelajahi Sumber

Add Mozroots man page

svn path=/trunk/mono/; revision=51647
Miguel de Icaza 20 tahun lalu
induk
melakukan
82cdc7af9b
3 mengubah file dengan 75 tambahan dan 3 penghapusan
  1. 1 1
      man/Makefile.am
  2. 4 2
      man/mono.1
  3. 70 0
      man/mozroots.1

+ 1 - 1
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)

+ 4 - 2
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

+ 70 - 0
man/mozroots.1

@@ -0,0 +1,70 @@
+.\" 
+.\" mozroots man page
+.\" (C) 2005 Novell, Inc. 
+.\" Author:
+.\"   Miguel de Icaza ([email protected])
+.\"
+.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).