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:
authorJo Shields <directhex@apebox.org>2016-09-01 16:21:15 +0300
committerMiguel de Icaza <miguel@gnome.org>2016-09-01 16:21:15 +0300
commit02f0dd9660595c5d9606feb70557e5a48cd99844 (patch)
tree61b6d9a9963c20257d01c0f85aef3066f8de2f5d /man
parent4664161ae34ec5b7b27952276f258f3433ea97fe (diff)
Add a man page for cert-sync (#3424)
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am1
-rw-r--r--man/cert-sync.152
2 files changed, 53 insertions, 0 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index de2b6ac7c3f..0c8b29892ff 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -2,6 +2,7 @@ man_MANS = \
al.1 \
cert2spc.1 \
certmgr.1 \
+ cert-sync.1 \
chktrust.1 \
cilc.1 \
crlupdate.1 \
diff --git a/man/cert-sync.1 b/man/cert-sync.1
new file mode 100644
index 00000000000..16ebdfa5660
--- /dev/null
+++ b/man/cert-sync.1
@@ -0,0 +1,52 @@
+.\"
+.\" certmgr manual page.
+.\" Copyright 2016 Microsoft Corp
+.\" Author:
+.\" Jo Shields <joshield@microsoft.com>
+.\"
+.TH Mono "cert-sync"
+.SH NAME
+cert-sync \- Mono Certificate Store Sync Tool
+.SH SYNOPSIS
+.PP
+.B cert-sync [--quiet] [--user] filename
+.SH DESCRIPTION
+This tool allows you to populate a Mono certificate store, from a large
+concatenated list of certificates in PEM format (commonly provided on most
+Linux distributions).
+
+Its use is intended to be automated at Mono install time, by distribution
+packagers, to seamlessly provide SSL support to Mono applications without
+further user interaction.
+.SH OPTIONS
+.TP
+.I "--quiet"
+Suppress verbose output
+.TP
+.I "--user"
+Populate the per-user store in the user's home directory, instead of the
+system-wide store.
+.TP
+.I "filename.crt"
+Path to a certificate bundle. The Mono store will have any extra entries
+removed, and new entries added, to reflect the provided file.
+
+.SH EXAMPLES
+.TP
+.B cert-sync /etc/ssl/certs/ca-certificates.crt
+Synchronize the machine store, from the Debian cert store location
+.TP
+.B cert-sync --user /etc/pki/tls/certs/ca-bundle.crt
+Synchronize the user store, from the Red Hat cert store location
+
+.SH AUTHOR
+Written by Jo Shields
+
+.SH COPYRIGHT
+Copyright (C) 2016 Microsoft Corp
+.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)