62f058980e
Fix missing and surplus commas. Fix the following formatting errors: .BR selinux(8) renders the the "(8)" in bold as well as the "selinux". This is wrong. .B selinux (8) renders with a space between "selinux" and "(8)", this is wrong. .B selinux (8) commits both of the above mistakes. .BR selinux (8), apparmor (8) omits the space separating "selinux(8)," and "apparmor(8)", this is wrong. Correct all the above using the following markup: .BR selinux (8), .BR apparmor (8) Signed-off-by: Alan Jenkins <alan.christopher.jenkins@gmail.com>
37 lines
1.1 KiB
Groff
37 lines
1.1 KiB
Groff
.TH "semanage-export" "8" "20130617" "" ""
|
|
.SH "NAME"
|
|
.B semanage\-export \- SELinux Policy Management import tool
|
|
.SH "SYNOPSIS"
|
|
.B semanage export [\-h] [\-S STORE] [\-f OUTPUT_FILE]
|
|
|
|
.SH "DESCRIPTION"
|
|
semanage is used to configure certain elements of
|
|
SELinux policy without requiring modification to or recompilation
|
|
from policy sources. semanage import and export can be used to extract the SELinux modifications from one machine and apply them to another. You can put a whole group of semanage commands within a file and apply them to a machine in a single transaction.
|
|
|
|
.SH "OPTIONS"
|
|
.TP
|
|
.I \-h, \-\-help
|
|
show this help message and exit
|
|
.TP
|
|
.I \-S STORE, \-\-store STORE
|
|
Select an alternate SELinux Policy Store to manage
|
|
.TP
|
|
.I \-f OUTPUT_FILE, \-\-output_file OUTPUT_FILE
|
|
Output file
|
|
|
|
.SH EXAMPLE
|
|
.nf
|
|
Import semanage modifications from another machine
|
|
# semanage export \-f semanage.mods
|
|
# scp semanage.mod remotemachine:
|
|
# ssh remotemachine
|
|
# semanage import \-f semanage.mods
|
|
|
|
.SH "SEE ALSO"
|
|
.BR selinux (8),
|
|
.BR semanage (8),
|
|
.BR semanage-import (8)
|
|
|
|
.SH "AUTHOR"
|
|
This man page was written by Daniel Walsh <dwalsh@redhat.com>
|