blob: 3f613e6bbd8bb422014950e26d03e40af486f2a2 (
plain)
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
$ rbd info
rbd: image name was not specified
[22]
$ rbd create
rbd: image name was not specified
[22]
$ rbd clone
rbd: image name was not specified
[22]
$ rbd clone foo
rbd: snapshot name was not specified
[22]
$ rbd clone foo@snap
rbd: destination image name was not specified
[22]
$ rbd clone foo bar
rbd: snapshot name was not specified
[22]
$ rbd clone foo bar@snap
rbd: snapshot name was not specified
[22]
$ rbd children
rbd: image name was not specified
[22]
$ rbd flatten
rbd: image name was not specified
[22]
$ rbd resize
rbd: image name was not specified
[22]
$ rbd rm
rbd: image name was not specified
[22]
$ rbd export
rbd: image name was not specified
[22]
$ rbd import
rbd: path was not specified
[22]
$ rbd diff
rbd: image name was not specified
[22]
$ rbd export-diff
rbd: image name was not specified
[22]
$ rbd export-diff foo
rbd: path was not specified
[22]
$ rbd export-diff foo@snap
rbd: path was not specified
[22]
$ rbd merge-diff
rbd: first diff was not specified
[22]
$ rbd merge-diff /tmp/diff1
rbd: second diff was not specified
[22]
$ rbd merge-diff /tmp/diff1 /tmp/diff2
rbd: path was not specified
[22]
$ rbd import-diff
rbd: path was not specified
[22]
$ rbd import-diff /tmp/diff
rbd: image name was not specified
[22]
$ rbd cp
rbd: image name was not specified
[22]
$ rbd cp foo
rbd: destination image name was not specified
[22]
$ rbd cp foo@snap
rbd: destination image name was not specified
[22]
$ rbd deep cp
rbd: image name was not specified
[22]
$ rbd deep cp foo
rbd: destination image name was not specified
[22]
$ rbd deep cp foo@snap
rbd: destination image name was not specified
[22]
$ rbd mv
rbd: image name was not specified
[22]
$ rbd mv foo
rbd: destination image name was not specified
[22]
$ rbd image-meta list
rbd: image name was not specified
[22]
$ rbd image-meta get
rbd: image name was not specified
[22]
$ rbd image-meta get foo
rbd: metadata key was not specified
[22]
$ rbd image-meta set
rbd: image name was not specified
[22]
$ rbd image-meta set foo
rbd: metadata key was not specified
[22]
$ rbd image-meta set foo key
rbd: metadata value was not specified
[22]
$ rbd image-meta remove
rbd: image name was not specified
[22]
$ rbd image-meta remove foo
rbd: metadata key was not specified
[22]
$ rbd object-map rebuild
rbd: image name was not specified
[22]
$ rbd snap ls
rbd: image name was not specified
[22]
$ rbd snap create
rbd: image name was not specified
[22]
$ rbd snap create foo
rbd: snapshot name was not specified
[22]
$ rbd snap rollback
rbd: image name was not specified
[22]
$ rbd snap rollback foo
rbd: snapshot name was not specified
[22]
$ rbd snap rm
rbd: image name was not specified
[22]
$ rbd snap rm foo
rbd: snapshot name was not specified
[22]
$ rbd snap purge
rbd: image name was not specified
[22]
$ rbd snap protect
rbd: image name was not specified
[22]
$ rbd snap protect foo
rbd: snapshot name was not specified
[22]
$ rbd snap unprotect
rbd: image name was not specified
[22]
$ rbd snap unprotect foo
rbd: snapshot name was not specified
[22]
$ rbd watch
rbd: image name was not specified
[22]
$ rbd status
rbd: image name was not specified
[22]
$ rbd device map
rbd: image name was not specified
[22]
$ rbd device unmap
rbd: unmap requires either image name or device path
[22]
$ rbd feature disable
rbd: image name was not specified
[22]
$ rbd feature disable foo
rbd: at least one feature name must be specified
[22]
$ rbd feature enable
rbd: image name was not specified
[22]
$ rbd feature enable foo
rbd: at least one feature name must be specified
[22]
$ rbd lock list
rbd: image name was not specified
[22]
$ rbd lock add
rbd: image name was not specified
[22]
$ rbd lock add foo
rbd: lock id was not specified
[22]
$ rbd lock remove
rbd: image name was not specified
[22]
$ rbd lock remove foo
rbd: lock id was not specified
[22]
$ rbd lock remove foo id
rbd: locker was not specified
[22]
$ rbd bench --io-type write
rbd: image name was not specified
[22]
$ rbd mirror pool enable rbd
rbd: must specify 'image' or 'pool' mode.
[22]
$ rbd mirror pool peer add rbd
rbd: remote cluster was not specified
[22]
$ rbd mirror pool peer remove rbd
rbd: must specify peer uuid
[22]
$ rbd mirror image demote
rbd: image name was not specified
[22]
$ rbd mirror image disable
rbd: image name was not specified
[22]
$ rbd mirror image enable
rbd: image name was not specified
[22]
$ rbd mirror image promote
rbd: image name was not specified
[22]
$ rbd mirror image resync
rbd: image name was not specified
[22]
|