-
Notifications
You must be signed in to change notification settings - Fork 3
/
sudosh.conf.5.in
67 lines (65 loc) · 2.16 KB
/
sudosh.conf.5.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.\" Process this file with
.\" groff -man -Tascii sudosh.1
.\"
.TH SUDOSH.CONF 5 "December 21th 2007" @VERSION@ "User Manuals"
.SH NAME
sudosh.conf \- configuration file for sudosh
.SH DESCRIPTION
.B sudosh.conf
is used to configure sudosh. The log directory, logging parameters and other default entries are stored within this file.
.SH OPTIONS
.IP logdir
.RS
logdir = /path/to/logging/directory
Use this to set the default logging directory. Both sudosh and sudosh-replay will use this to deteremine the logging directory.
.RE
.IP default shell
.RS
default shell = /path/to/default/shell
This is the default shell sudosh will use if it cannot automatically determine which shell to use..RE
.IP delimiter
.RS
delimiter = -
This is the character you want to delimit the logging files with. For example some environments may use ths underscore "_" or dash "-" in the login names. If this is the case use the delimiter option to change the logging delimiter to another character such as a period "." or comma "," The delimiter must be 1 character in length and cannot be alphanumeric.
.RE
.IP syslog.priority
.RS
syslog.priority = PRIORITY
Use this option to set which syslog priority sudosh will use. The default is LOG_INFO
.RE
.IP syslog.facility
.RS
syslog.facility = FACILITY
Use this option to set which syslog facility sudosh will use. The default is LOG_LOCAL2
.RE
.IP "-c arg allow"
.RS
-c arg allow = command
This option can be used multiple times. If you wish to use sudosh as a default login shell and want to allow users to copy files, you can allow them to use commands such as rsync and scp. For each command you want to allow, use a new line and option.
-c arg allow = scp
-c arg allow = rsync
.RE
.SH EXAMPLES
# Sudosh Configuration File
.RE
logdir = /var/log/sudosh
.RE
default shell = /bin/sh
.RE
delimiter = -
.RE
syslog.priority = LOG_INFO
.RE
syslog.facility = LOG_LOCAL2
.RE
# Allow Sudosh to execute -c arguements? If so, what?
.RE
-c arg allow = scp
.RE
-c arg allow = rsync
.SH AUTHOR
Josh Grebe <[email protected]>
Douglas Richard Hanks, Jr. <[email protected]>
.SH "SEE ALSO"
.BR sudosh-replay (8),
.BR sudo (8)