Blame


1 8d1b399b 2021-07-22 op .\" Copyright (c) 2021 Omar Polo <op@omarpolo.com>
2 8d1b399b 2021-07-22 op .\"
3 8d1b399b 2021-07-22 op .\" Permission to use, copy, modify, and distribute this software for any
4 8d1b399b 2021-07-22 op .\" purpose with or without fee is hereby granted, provided that the above
5 8d1b399b 2021-07-22 op .\" copyright notice and this permission notice appear in all copies.
6 8d1b399b 2021-07-22 op .\"
7 8d1b399b 2021-07-22 op .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 8d1b399b 2021-07-22 op .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 8d1b399b 2021-07-22 op .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 8d1b399b 2021-07-22 op .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 8d1b399b 2021-07-22 op .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 8d1b399b 2021-07-22 op .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 8d1b399b 2021-07-22 op .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 8d1b399b 2021-07-22 op .\"
15 8d1b399b 2021-07-22 op .Dd $Mdocdate: July 07 2021 $
16 8d1b399b 2021-07-22 op .Dt KAMID 8
17 8d1b399b 2021-07-22 op .Os
18 8d1b399b 2021-07-22 op .Sh NAME
19 8d1b399b 2021-07-22 op .Nm kamid
20 8d1b399b 2021-07-22 op .Nd 9p file server daemon
21 8d1b399b 2021-07-22 op .Sh SYNOPSYS
22 8d1b399b 2021-07-22 op .Nm
23 8d1b399b 2021-07-22 op .Op Fl dnv
24 8d1b399b 2021-07-22 op .Op Fl D Ar macro Ns = Ns Ar value
25 8d1b399b 2021-07-22 op .Op Fl f Pa file
26 8d1b399b 2021-07-22 op .Op Fl s Pa socket
27 8d1b399b 2021-07-22 op .Sh DESCRIPTION
28 8d1b399b 2021-07-22 op .Nm
29 8d1b399b 2021-07-22 op is a 9p file server daemon.
30 8d1b399b 2021-07-22 op .Pp
31 8d1b399b 2021-07-22 op The options are as follows:
32 8d1b399b 2021-07-22 op .Bl -tag -width Ds
33 8d1b399b 2021-07-22 op .It Fl D Ar macro Ns = Ns Ar value
34 8d1b399b 2021-07-22 op Set a
35 8d1b399b 2021-07-22 op .Ar macro
36 8d1b399b 2021-07-22 op to a
37 8d1b399b 2021-07-22 op .Ar value .
38 8d1b399b 2021-07-22 op Macros can be referenced in the configuration files.
39 8d1b399b 2021-07-22 op .It Fl d
40 8d1b399b 2021-07-22 op Do not daemonize.
41 8d1b399b 2021-07-22 op If this option is specified,
42 8d1b399b 2021-07-22 op .Nm
43 8d1b399b 2021-07-22 op will run in the foreground and log to
44 8d1b399b 2021-07-22 op .Em stderr .
45 8d1b399b 2021-07-22 op .It Fl f Ar file
46 8d1b399b 2021-07-22 op specify an alternative configuration file.
47 8d1b399b 2021-07-22 op .It Fl n
48 8d1b399b 2021-07-22 op Configtest mode.
49 8d1b399b 2021-07-22 op Only check the configuration file for validity.
50 8d1b399b 2021-07-22 op .It Fl s Ar socket
51 8d1b399b 2021-07-22 op Use an alternate location for the default control socket.
52 8d1b399b 2021-07-22 op .It Fl v
53 8d1b399b 2021-07-22 op Produce more verbose output.
54 8d1b399b 2021-07-22 op .El
55 8d1b399b 2021-07-22 op .Sh FILES
56 8d1b399b 2021-07-22 op .Bl -tag -width "/var/run/kamid.sockXX" -compact
57 8d1b399b 2021-07-22 op .It Pa /etc/kamid.conf
58 8d1b399b 2021-07-22 op Default
59 8d1b399b 2021-07-22 op .Nm
60 8d1b399b 2021-07-22 op configuration file.
61 8d1b399b 2021-07-22 op .It Pa /var/run/kamid.sock
62 8d1b399b 2021-07-22 op UNIX-domain socket used for communication with
63 8d1b399b 2021-07-22 op .Xr kamictl 8 .
64 8d1b399b 2021-07-22 op .El
65 8d1b399b 2021-07-22 op .Sh SEE ALSO
66 8d1b399b 2021-07-22 op .Xr kami.conf 5 ,
67 8d1b399b 2021-07-22 op .Xr kamictl 8
68 8d1b399b 2021-07-22 op .Sh AUTHORS
69 8d1b399b 2021-07-22 op .An -nosplit
70 8d1b399b 2021-07-22 op The
71 8d1b399b 2021-07-22 op .Nm
72 8d1b399b 2021-07-22 op program was written by
73 8d1b399b 2021-07-22 op .An Omar Polo Aq Mt op@omarpolo.com .