Blame


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