Blame


1 c902213d 2022-10-29 thomas .\"
2 c902213d 2022-10-29 thomas .\" Copyright (c) 2022 Stefan Sperling
3 c902213d 2022-10-29 thomas .\"
4 c902213d 2022-10-29 thomas .\" Permission to use, copy, modify, and distribute this software for any
5 c902213d 2022-10-29 thomas .\" purpose with or without fee is hereby granted, provided that the above
6 c902213d 2022-10-29 thomas .\" copyright notice and this permission notice appear in all copies.
7 c902213d 2022-10-29 thomas .\"
8 c902213d 2022-10-29 thomas .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 c902213d 2022-10-29 thomas .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 c902213d 2022-10-29 thomas .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 c902213d 2022-10-29 thomas .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 c902213d 2022-10-29 thomas .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 c902213d 2022-10-29 thomas .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 c902213d 2022-10-29 thomas .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 c902213d 2022-10-29 thomas .\"
16 c902213d 2022-10-29 thomas .Dd $Mdocdate$
17 c902213d 2022-10-29 thomas .Dt GOTCTL 8
18 c902213d 2022-10-29 thomas .Os
19 c902213d 2022-10-29 thomas .Sh NAME
20 c902213d 2022-10-29 thomas .Nm gotctl
21 c902213d 2022-10-29 thomas .Nd control the Game of Trees Daemon
22 c902213d 2022-10-29 thomas .Sh SYNOPSIS
23 c902213d 2022-10-29 thomas .Nm
24 c902213d 2022-10-29 thomas .Op Fl hV
25 c902213d 2022-10-29 thomas .Op Fl f Ar path
26 c902213d 2022-10-29 thomas .Ar command
27 c902213d 2022-10-29 thomas .Op Ar arg ...
28 c902213d 2022-10-29 thomas .Sh DESCRIPTION
29 c902213d 2022-10-29 thomas .Nm
30 c902213d 2022-10-29 thomas controls the
31 c902213d 2022-10-29 thomas .Xr gotd 8
32 c902213d 2022-10-29 thomas daemon.
33 c902213d 2022-10-29 thomas .Pp
34 c902213d 2022-10-29 thomas The options for
35 c902213d 2022-10-29 thomas .Nm
36 c902213d 2022-10-29 thomas are as follows:
37 c902213d 2022-10-29 thomas .Bl -tag -width Ds
38 c902213d 2022-10-29 thomas .It Fl h
39 c902213d 2022-10-29 thomas Display usage information and exit immediately.
40 c902213d 2022-10-29 thomas .It Fl f Ar path
41 c902213d 2022-10-29 thomas Set the
42 c902213d 2022-10-29 thomas .Ar path
43 c902213d 2022-10-29 thomas to the unix socket which
44 c902213d 2022-10-29 thomas .Xr gotd 8
45 c902213d 2022-10-29 thomas is listening on.
46 c902213d 2022-10-29 thomas If not specified, the default path
47 c902213d 2022-10-29 thomas .Pa /var/run/gotd.sock
48 c902213d 2022-10-29 thomas will be used.
49 c902213d 2022-10-29 thomas .It Fl V , -version
50 c902213d 2022-10-29 thomas Display program version and exit immediately.
51 c902213d 2022-10-29 thomas .El
52 c902213d 2022-10-29 thomas .Pp
53 c902213d 2022-10-29 thomas The commands for
54 c902213d 2022-10-29 thomas .Nm
55 c902213d 2022-10-29 thomas are as follows:
56 0df6b4df 2022-10-29 thomas .Bl -tag -width Ds
57 c902213d 2022-10-29 thomas .It Cm info
58 c902213d 2022-10-29 thomas Display information about a running
59 c902213d 2022-10-29 thomas .Xr gotd 8
60 c902213d 2022-10-29 thomas instance.
61 c8cf6821 2023-01-06 thomas This operation requires root privileges.
62 c902213d 2022-10-29 thomas .It Cm stop
63 c902213d 2022-10-29 thomas Stop a running
64 c902213d 2022-10-29 thomas .Xr gotd 8
65 c902213d 2022-10-29 thomas instance.
66 c902213d 2022-10-29 thomas This operation requires root privileges.
67 0df6b4df 2022-10-29 thomas .El
68 c902213d 2022-10-29 thomas .Sh SEE ALSO
69 c902213d 2022-10-29 thomas .Xr got 1 ,
70 c902213d 2022-10-29 thomas .Xr gotd 8
71 c902213d 2022-10-29 thomas .Sh AUTHORS
72 c902213d 2022-10-29 thomas .An Stefan Sperling Aq Mt stsp@openbsd.org