File: doozer.1

package info (click to toggle)
golang-doozer 0.0~git20130909-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 224 kB
  • ctags: 283
  • sloc: makefile: 11
file content (152 lines) | stat: -rw-r--r-- 4,364 bytes parent folder | download
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
.\" Hey, EMACS: -*- nroff -*-
.TH DOOZER "1" "Aug 2013" "doozer"
.SH NAME
doozer \- Doozer Lock service command line client
.SH SYNOPSIS
.TP
.B doozer
\fI[options]\fR
\fI<command>\fR
\fI[options]\fR
\fI[args]\fR
.SH DESCRIPTION
.PP
.B doozer
is a client for the
.I Doozer Lock Service
as implemented by the
.BR doozerd (8)
binary.
It can be used to perform any kind of
.B doozer
lock service operation which is supported by the API, such as creating
or updating entries, watching them for changes or listing contents of
arbitrary trees on the lock service.
.SH OPTIONS
Each command takes zero or more options and zero or more arguments.
In addition, there are some global options that can be used with any
command.
.TP
Global options are:
.IP -a=URI
Connect to the given
.B doozer
service.
The URI can contain an arbitrary number of address parts concatenated
by an ampersand character (&).
An URI always starts with the prefix
.IR doozer:? .
Valid options include:
.RS
.IP ca
specifies the "cluster address", which could be an IP address and port
combination or a host name with a port appended to it.
.IP cn
specifies a cluster name which will be looked up from the lock servers
specified in the environment variable
.BR DOOZER_BOOT_URI (which also contains a doozer URI).
.IP sk
can specify a shared key which is used to authenticate to the lock
service.
.RE
.RS
An example URI would look like this:
.TP
doozer:?ca=doozer1.example.com&ca=doozer2.example.com&sk=letmein
.RE
.IP -b=URI
specifies the Doozer Boot URI which is used to resolve any cluster
names passed in the
.IR -a
flag.
It shares the same syntax as
.IR -a .
.IP -h
shows a short context help.
.IP -r=rev
specifies the revision number for commands which optionally accept
one.
.IP -v
tells
.B doozer
to print its version string.
.TP
Commands are:
.IP "add path"
Add a key only if it isn't already set.
Takes the file input from stdin.
.IP "del path rev"
Deletes the file if it is older than revision
.IR rev .
.IP "find path"
Lists all files under the given
.IR path .
.IP "get path"
Fetches the contents of the entry at
.I path
and displays it to stdout.
.IP "help command"
Displays detailed help for the given
.IR command .
.IP nop
Just wait for consensus between all lock servers and return.
.IP "rev path"
Display the current revision of
.IR path .
.IP "set path rev"
Sets the contents of
.I path
to the contents read from stdin if it's older than
.IR rev .
.IP "stat path"
Prints the current status of the entry at
.IR path .
.IP "touch path"
Update the revision of the file at
.IR path .
.IP "wait glob"
Wait until a change occurs in an entry which matches
.IR glob .
.IP "watch glob"
Watch for changes in entries which match
.IR glob .
Prints all changes to such entries to stdout.
.SH ENVIRONMENT
The following environment variables are honored:
.IP DOOZER_URI
The doozer cluster to bind to; overridden by
.IR -a .
.IP DOOZER_BOOT_URI
The DzNS to lookup address in; overridden by
.IR -b .
.SH "EXIT CODES"
The exit status is 0 on success, 1 for a rev mismatch, and 2 otherwise.
.SH "SEE ALSO"
.BR doozerd (8) .
.SH AUTHOR
.B doozer
was written by Blake Mizerany and Keith Rarick.
.SH "REPORTING BUGS"
Please file any bug in the issue tracker at
.I https://github.com/ha/doozer/issues
.SH COPYRIGHT
.PP
Copyright \(co 2010-2013 Blake Mizerany, Keith Rarick.
.PP
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.PP
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.PP
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.