Skip to content

Commit 667d03a

Browse files
committed
Add the man page for mokutil
1 parent 94ece9d commit 667d03a

File tree

5 files changed

+72
-2
lines changed

5 files changed

+72
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
/intltool-merge.in
4343
/intltool-update.in
4444
/libtool
45+
/man/Makefile
46+
/man/Makefile.in
4547
/po/*.gmo
4648
/po/*.mo
4749
/po/.intltool-merge-cache

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SUBDIRS = src
1+
SUBDIRS = src man

configure.ac

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,6 @@ AC_CHECK_FUNCS([memset])
8383
PKG_CHECK_MODULES(OPENSSL, [openssl >= 0.9.8])
8484

8585
AC_CONFIG_FILES([Makefile
86-
src/Makefile])
86+
src/Makefile
87+
man/Makefile])
8788
AC_OUTPUT

man/Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist_man1_MANS = mokutil.1

man/mokutil.1

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
.TH MOKUTIL 1 "Wed Nov 07 2012"
2+
.SH NAME
3+
4+
mokutil \- utility to manipulate machine owner keys
5+
6+
.SH SYNOPSIS
7+
\fBmokutil\fR [--list-enrolled | -le]
8+
.br
9+
\fBmokutil\fR [--list-new | -ln]
10+
.br
11+
\fBmokutil\fR [--import | -i] ...
12+
.br
13+
\fBmokutil\fR [--delete-all | -D]
14+
.br
15+
\fBmokutil\fR [--revoke | -r]
16+
.br
17+
\fBmokutil\fR [--export | -x]
18+
.br
19+
\fBmokutil\fR [--password | -p]
20+
.br
21+
\fBmokutil\fR [--disable-validation]
22+
.br
23+
\fBmokutil\fR [--enable-validation]
24+
.br
25+
26+
.SH DESCRIPTION
27+
\fBmokutil\fR is a tool to import or delete the machines owner keys
28+
(MOK) stored in the database of shim.
29+
30+
.SH OPTIONS
31+
.TP
32+
\fB--list-enrolled\fR
33+
List the keys the already stored in the database
34+
35+
.TP
36+
\fB--list-new\fR
37+
List the keys to be enrolled
38+
39+
.TP
40+
\fB--import\fR
41+
Collect the followed files and form a request to shim. The files must be in DER
42+
format.
43+
44+
.TP
45+
\fB--delete-all\fR
46+
Request shim to delete all stored keys
47+
48+
.TP
49+
\fB--revoke\fR
50+
Revoke the current request
51+
52+
.TP
53+
\fB--export\fR
54+
Export the keys stored in MokListRT
55+
56+
.TP
57+
\fB--password\fR
58+
Setup the password for MokManager
59+
60+
.TP
61+
\fB--disable-validation\fR
62+
Disable the validation process in shim
63+
64+
.TP
65+
\fB--enrolled-validation\fR
66+
Enable the validation process in shim

0 commit comments

Comments
 (0)