Skip to content

Commit

Permalink
doc: add missing roff escape characters
Browse files Browse the repository at this point in the history
  • Loading branch information
grammmike committed Feb 5, 2024
1 parent 1c190da commit d0ffcfe
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions doc/gromox-dscli.8
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ Discover your store:
.PP
.RS 4
.nf
PASS=letmein gromox-dscli -e user@domain.example
PASS=letmein gromox\-dscli \-e user@domain.example
.fi
.RE
.PP
Test public store discovery:
.PP
.RS 4
.nf
PASS=letmein gromox-dscli -e public.folder.root@domain.example -u
PASS=letmein gromox\-dscli \-e public.folder.root@domain.example \-u
user@domain.example
.fi
.RE
Expand Down
4 changes: 2 additions & 2 deletions doc/gromox-eml2mbox.8
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ when *.eml leads to an expansion the system cannot handle.
gromox\-eml2mbox *.eml >all.mbox
.fi
.nf
find . -type f -name "*.eml" | gromox\-eml2mbox - >all.mbox
find . \-type f \-name "*.eml" | gromox\-eml2mbox \- >all.mbox
.fi
.nf
alpine -f $PWD/all.mbox
alpine \-f $PWD/all.mbox
.fi
.SH See also
\fBgromox\fP(7)
2 changes: 1 addition & 1 deletion doc/gromox-kdb2mt.8
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ database, assuming that this database is not already accepting connections on
port 3306. Command:
.PP
.RS 4
ssh -L 12345:localhost:3306 root@kp
ssh \-L 12345:localhost:3306 root@kp
.RE
.PP
This way, the database can be accessed as 127.0.0.1:12345 later.
Expand Down
2 changes: 1 addition & 1 deletion doc/gromox-pff2mt.8
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Show a diagnostic tree view of the source data as it is being read.
\fB\-\-with\-hidden\fP, \fB\-\-without\-hidden\fP
This option controls the import of folders that have PR_ATTR_HIDDEN=1.
.br
Default: without hidden if -s is present
Default: if \-s is present, import without hidden folders
.TP
\fB\-\-only\-obj\fP \fInid\fP
Extract just the object with the given PFF node id. This option may be
Expand Down
12 changes: 6 additions & 6 deletions doc/gromox-selinux.5
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The gromox processes execute with the gromox_t SELinux type. You can check if yo

For example:

.B ps -eZ | grep gromox_t
.B ps \-eZ | grep gromox_t


.SH "ENTRYPOINTS"
Expand All @@ -34,7 +34,7 @@ The following process types are defined for gromox:
.EE
.PP
Note:
.B semanage permissive -a gromox_t
.B semanage permissive \-a gromox_t
can be used to make the process type gromox_t permissive. SELinux does not deny access to permissive process types, but the AVC (SELinux denials) messages are still generated.

.SH BOOLEANS
Expand All @@ -45,15 +45,15 @@ SELinux policy is customizable based on least access required. gromox policy is
If you want to dontaudit all daemons scheduling requests (setsched, sys_nice), you must turn on the daemons_dontaudit_scheduling boolean. Enabled by default.

.EX
.B setsebool -P daemons_dontaudit_scheduling 1
.B setsebool \-P daemons_dontaudit_scheduling 1
.EE

.PP
If you want to allow all domains to execute in fips_mode, you must turn on the fips_mode boolean. Enabled by default.

.EX
.B setsebool -P fips_mode 1
.B setsebool \-P fips_mode 1
.EE

Expand Down Expand Up @@ -158,9 +158,9 @@ SELinux gromox policy is very flexible allowing users to setup their gromox proc
SELinux defines the file context types for the gromox, if you wanted to
store files with these types in a different paths, you need to execute the semanage command to specify alternate labeling and then use restorecon to put the labels on disk.

.B semanage fcontext -a -t gromox_var_run_t '/srv/mygromox_content(/.*)?'
.B semanage fcontext \-a \-t gromox_var_run_t '/srv/mygromox_content(/.*)?'
.br
.B restorecon -R -v /srv/mygromox_content
.B restorecon \-R \-v /srv/mygromox_content

Note: SELinux often uses regular expressions to specify labels that match multiple files.

Expand Down

0 comments on commit d0ffcfe

Please sign in to comment.