summaryrefslogtreecommitdiffstats
path: root/src/test/cli/rbd/invalid-snap-usage.t
blob: 920c3c223efabb644c565daff890b7a8b97ba48f (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
  $ rbd create foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd flatten foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd resize foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd rm foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd import-diff /tmp/diff foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd mv foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd mv foo@snap bar
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd mv foo@snap bar@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta list foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta get foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta get foo@snap key
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta set foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta set foo@snap key
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta set foo@snap key val
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta remove foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd image-meta remove foo@snap key
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd snap ls foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd snap purge foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd watch foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd status foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd feature disable foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd feature disable foo@snap layering
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd feature enable foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd feature enable foo@snap layering
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd lock list foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd lock add foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd lock add foo@snap id
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd lock remove foo@snap
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd lock remove foo@snap id
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd lock remove foo@snap id client.1234
  rbd: snapshot name specified for a command that doesn't use it
  [22]
  $ rbd bench foo@snap --io-type write
  rbd: snapshot name specified for a command that doesn't use it
  [22]

  $ rbd clone foo@snap bar@snap
  rbd: destination snapshot name specified for a command that doesn't use it
  [22]
  $ rbd import /bin/ls ls@snap
  rbd: destination snapshot name specified for a command that doesn't use it
  [22]
  $ rbd cp foo bar@snap
  rbd: destination snapshot name specified for a command that doesn't use it
  [22]
  $ rbd cp foo@snap bar@snap
  rbd: destination snapshot name specified for a command that doesn't use it
  [22]
  $ rbd deep cp foo bar@snap
  rbd: destination snapshot name specified for a command that doesn't use it
  [22]
  $ rbd deep cp foo@snap bar@snap
  rbd: destination snapshot name specified for a command that doesn't use it
  [22]
  $ rbd mv foo bar@snap
  rbd: destination snapshot name specified for a command that doesn't use it
  [22]