di-ruby-lvm-attrib 0.0.23 → 0.0.24

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 05f6a394bd5b868232140c6a9e89ff60be891e00
4
- data.tar.gz: a3c323649349ded15a1a01bd894063542ff43df8
3
+ metadata.gz: 13ea38d277c91664a3715294929de44a6b1b0bf0
4
+ data.tar.gz: c0b9121338bb280e2294b77d0590dd7cd22ee6ca
5
5
  SHA512:
6
- metadata.gz: 12bd265d6060c90def9f89b4548879f278e7158ee6dbbffd17ba3f368351a82eb931d6db838943885e536276b50a9696758cc5a1f6771831a54b658d151e0aa5
7
- data.tar.gz: 428b87917ed9c512491294fe58c324831378df398f23484f5763713aaef727c882eaf5a0b1e092f9bba14f25b2c0abb451452458149392773a59d8ad637b09b9
6
+ metadata.gz: 988be0e441cbc934f9edaf80c375ec421a11b7f1736e63af4a33be5f9488c06838ad3886f9958d7afb787a219f874f138a5cdf483965406c9b3afcedf38b9e35
7
+ data.tar.gz: 56eedd2b21a85e27d88d90ee1e4eee328857ed9d76c6e571a30934a330353577a9cf1500dee769cc36481ea5767bb7316b2acba37ce09cf7ffed55e24bf4048c
data/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ # 0.0.24 (2016-2-25)
2
+ - Added LVM attributes for version 2.0.2.120
3
+ - Added a CHANGELOG
4
+
5
+ # 0.0.23 (2015-12-04)
6
+ - Added LVM attributes for version 2.0.2.116
7
+
8
+ # 0.0.22 (2015-12-02)
9
+ - Added LVM attributes for versions 2.02.130 and 2.02.132
10
+
11
+ # 0.0.21 (2015-08-04)
12
+ - Added LVM attributes for versions 2.02.118 and 2.02.119
13
+
14
+ # 0.0.20 (2015-06-05)
15
+ - Added LVM attributes for version 2.02.114
16
+
17
+ # 0.0.19 (2015-05-30)
18
+ - Added LVM attributes for version 2.02.111
19
+ - Added MIT license to the Gemspec
20
+ - Gemspec now properly loads the version from the lib/attributes.rb file
data/README.md CHANGED
@@ -1,19 +1,11 @@
1
1
  # ruby-lvm-attrib
2
-
3
2
  ## DESCRIPTION:
3
+ This is a list of attributes for lvm objects. They are generated from the source code and broken down by version. See ADDING ATTRIBUTES below to contribute.
4
4
 
5
- This is a list of attributes for lvm objects. They are generated from the
6
- source code and broken down by version. See ADDING ATTRIBUTES below
7
- to contribute.
8
-
9
- At their core these files exist to determine which arguments to pass
10
- lvs/vgs/pvs and the subsequent type conversions.
11
- Currently this is split from the main ruby-lvm gem since these files require
12
- updating to follow LVM2 releases.
5
+ At their core these files exist to determine which arguments to pass lvs/vgs/pvs and the subsequent type conversions.<br>Currently this is split from the main ruby-lvm gem since these files require updating to follow LVM2 releases.
13
6
 
14
7
  ## FEATURES/PROBLEMS:
15
-
16
- * This library may go away depending on future progress of ruby-lvm.
8
+ - This library may go away depending on future progress of ruby-lvm.
17
9
 
18
10
  ## SYNOPSIS:
19
11
 
@@ -24,71 +16,54 @@ updating to follow LVM2 releases.
24
16
  ```
25
17
 
26
18
  ## REQUIREMENTS:
27
-
28
- * None
19
+ - None
29
20
 
30
21
  ## INSTALL:
31
-
32
- * `sudo gem install ruby-lvm-attrib`
22
+ - `sudo gem install ruby-lvm-attrib`
33
23
 
34
24
  ## ADDING ATTRIBUTES:
35
-
36
25
  To add attributes:
37
- * Download and extract LVM2 source version from: http://git.fedorahosted.org/cgit/lvm2.git/refs/tags
38
- * Fork this repository
39
- * `git clone your-forked-repo`
40
- * `cd your-forked-repo`
41
- * `git checkout -b mybranch`
42
- * `bin/generate_field_data path/to/lvm2-source`
43
- * See missing attribute type note below if there's issues, otherwise will just return "Done."
44
- * `mv LVM_VERSION_FULL lib/lvm/attributes/LVM_VERSION`
45
- * LVM_VERSION_FULL being something like 2.02.86(2)-cvs or 2.02.98(2)-git
46
- * LVM_VERSION being something like 2.02.86(2) or 2.02.98(2)
47
- * `git commit -am "Added LVM_VERSION attributes"`
48
- * `git push origin mybranch`
49
- * Submit PR to this repository. **Please make sure to point your pull at the
50
- `next` branch -- NOT MASTER!**
51
-
52
- You can have look at `update-lvm.sh` that does above steps (except git changes)
53
- automatically.
26
+ - Download and extract LVM2 source version from: [http://git.fedorahosted.org/cgit/lvm2.git/refs/tags](http://git.fedorahosted.org/cgit/lvm2.git/refs/tags)
27
+ - Fork this repository
28
+ - `git clone your-forked-repo`
29
+ - `cd your-forked-repo`
30
+ - `git checkout -b mybranch`
31
+ - `bin/generate_field_data path/to/lvm2-source`
32
+ - See missing attribute type note below if there's issues, otherwise will just return "Done."
54
33
 
55
- ### MISSING ATTRIBUTE TYPE:
34
+ - `mv LVM_VERSION_FULL lib/lvm/attributes/LVM_VERSION`
35
+ - LVM_VERSION_FULL being something like 2.02.86(2)-cvs or 2.02.98(2)-git
36
+ - LVM_VERSION being something like 2.02.86(2) or 2.02.98(2)
37
+
38
+ - `git commit -am "Added LVM_VERSION attributes"`
39
+ - `git push origin mybranch`
40
+ - Submit PR to this repository. **Please make sure to point your pull at the
41
+ - `next` branch -- NOT MASTER!**
42
+
43
+ You can have look at `update-lvm.sh` that does above steps (except git changes) automatically.
56
44
 
45
+ ### MISSING ATTRIBUTE TYPE:
57
46
  If you get an error like the below:
58
47
 
59
- Oops, missing type conversion data of column 'discards' use by 'SEGS' which says its going to return a 'discards'
60
- Figure out the missing type and rerun.
48
+ ```
49
+ Oops, missing type conversion data of column 'discards' use by 'SEGS' which says its going to return a 'discards'
50
+ Figure out the missing type and rerun.
51
+ ```
61
52
 
62
- * Look in `path/to/lvm-source/lib/report/columns.h` for the column name in the 7th field.
63
- * If the 3rd field is NUM, type will be Integer. If 3rd field is STR, type will be String.
64
- * Add the information to `bin/generate_field_data` in the TYPE_CONVERSION_MAP and try running again
53
+ - Look in `path/to/lvm-source/lib/report/columns.h` for the column name in the 7th field.
54
+ - If the 3rd field is NUM, type will be Integer. If 3rd field is STR, type will be String.
55
+ - Add the information to `bin/generate_field_data` in the TYPE_CONVERSION_MAP and try running again
65
56
 
66
57
  ## FEEDBACK:
67
-
68
- Please feel free to submit patches or constructive criticism, I'm still pretty
69
- new to ruby and object oriented programming in general.
58
+ Please feel free to submit patches or constructive criticism, I'm still pretty new to ruby and object oriented programming in general.
70
59
 
71
60
  ## LICENSE:
72
-
73
61
  (The MIT License)
74
62
 
75
- Copyright (c) 2008 Matthew Kent, Bravenet Web Services Inc.
76
-
77
- Permission is hereby granted, free of charge, to any person obtaining
78
- a copy of this software and associated documentation files (the
79
- 'Software'), to deal in the Software without restriction, including
80
- without limitation the rights to use, copy, modify, merge, publish,
81
- distribute, sublicense, and/or sell copies of the Software, and to
82
- permit persons to whom the Software is furnished to do so, subject to
83
- the following conditions:
84
-
85
- The above copyright notice and this permission notice shall be
86
- included in all copies or substantial portions of the Software.
87
-
88
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
89
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
90
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
91
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
92
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
93
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
94
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
63
+ Copyright (c) 2008 Matthew Kent, Bravenet Web Services Inc.
64
+
65
+ 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:
66
+
67
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
68
+
69
+ 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.
data/TODO.md ADDED
@@ -0,0 +1,3 @@
1
+ # To-Do
2
+ ## 0.1.1
3
+ - attribute generation should be a proper class with a binary invoking it
@@ -11,72 +11,72 @@ require 'yaml'
11
11
  VERSION_FILE = "/VERSION"
12
12
  COLUMNS_FILE = "/lib/report/columns.h"
13
13
 
14
- debug = false
14
+ debug = false
15
15
 
16
16
  TYPE_CONVERSION_MAP = {
17
- # Only types we can really trust
18
- "uint32" => "Integer",
19
- "int32" => "Integer",
20
- # These were determined by reading the code, they invoke _(u)int32_disp right away
21
- "pvmdas" => "Integer",
22
- "vgmdas" => "Integer",
23
- "lvcount" => "Integer",
24
- "lvsegcount" => "Integer",
25
- "segstartpe" => "Integer",
26
- # listed to return STR?
27
- "lvkmaj" => "Integer",
28
- "lvkmin" => "Integer",
29
- "snpercent" => "Float",
30
- "copypercent" => "Float",
31
- # size32/64, these do unit formatting unless overridden on command line. We
32
- # typically want them in bytes so we can convert them to Integers safely
33
- "size32" => "Integer",
34
- "size64" => "Integer",
35
- # These types return size32/size64 as well
36
- "lvkreadahead" => "Integer",
37
- "pvsize" => "Integer",
38
- "devsize" => "Integer",
39
- "originsize" => "Integer",
40
- "pvfree" => "Integer",
41
- "pvused" => "Integer",
42
- "pvmdafree" => "Integer",
43
- "pvmdasize" => "Integer",
44
- "vgsize" => "Integer",
45
- "vgfree" => "Integer",
46
- "vgmda_free" => "Integer",
47
- "chunksize" => "Integer",
48
- "segstart" => "Integer",
49
- "segsize" => "Integer",
50
- "snapcount" => "Integer",
51
- "vgmdafree" => "Integer",
52
- "vgmdasize" => "Integer",
53
- # Weird one, can be "auto" or size32
54
- "lvreadahead" => "String",
55
- "lvmetadatasize" => "Integer",
56
- "datapercent" => "Float",
57
- "metadatapercent" => "Float",
58
- "pvmdasused" => "Integer",
59
- "vgmdasused" => "Integer",
60
- "vgmdacopies" => "Integer",
61
- "thincount" => "Integer",
62
- "thinid" => "Integer",
63
- "discards" => "Integer",
64
- "thinzero" => "Integer",
65
- "transactionid" => "Integer",
66
- "raidmismatchcount" => "Integer",
67
- "raidwritebehind" => "Integer",
68
- "raidminrecoveryrate" => "Integer",
69
- "raidmaxrecoveryrate" => "Integer",
70
- "segsizepe" => "Integer",
71
- "thinid" => "Integer",
72
- # New fields for caching
73
- "cache_total_blocks" => "Integer",
74
- "cache_used_blocks" => "Integer",
75
- "cache_dirty_blocks" => "Integer",
76
- "cache_read_hits" => "Integer",
77
- "cache_read_misses" => "Integer",
78
- "cache_write_hits" => "Integer",
79
- "cache_write_misses" => "Integer"
17
+ # Only types we can really trust
18
+ "uint32" => "Integer",
19
+ "int32" => "Integer",
20
+ # These were determined by reading the code, they invoke _(u)int32_disp right away
21
+ "pvmdas" => "Integer",
22
+ "vgmdas" => "Integer",
23
+ "lvcount" => "Integer",
24
+ "lvsegcount" => "Integer",
25
+ "segstartpe" => "Integer",
26
+ # listed to return STR?
27
+ "lvkmaj" => "Integer",
28
+ "lvkmin" => "Integer",
29
+ "snpercent" => "Float",
30
+ "copypercent" => "Float",
31
+ # size32/64, these do unit formatting unless overridden on command line. We
32
+ # typically want them in bytes so we can convert them to Integers safely
33
+ "size32" => "Integer",
34
+ "size64" => "Integer",
35
+ # These types return size32/size64 as well
36
+ "lvkreadahead" => "Integer",
37
+ "pvsize" => "Integer",
38
+ "devsize" => "Integer",
39
+ "originsize" => "Integer",
40
+ "pvfree" => "Integer",
41
+ "pvused" => "Integer",
42
+ "pvmdafree" => "Integer",
43
+ "pvmdasize" => "Integer",
44
+ "vgsize" => "Integer",
45
+ "vgfree" => "Integer",
46
+ "vgmda_free" => "Integer",
47
+ "chunksize" => "Integer",
48
+ "segstart" => "Integer",
49
+ "segsize" => "Integer",
50
+ "snapcount" => "Integer",
51
+ "vgmdafree" => "Integer",
52
+ "vgmdasize" => "Integer",
53
+ # Weird one, can be "auto" or size32
54
+ "lvreadahead" => "String",
55
+ "lvmetadatasize" => "Integer",
56
+ "datapercent" => "Float",
57
+ "metadatapercent" => "Float",
58
+ "pvmdasused" => "Integer",
59
+ "vgmdasused" => "Integer",
60
+ "vgmdacopies" => "Integer",
61
+ "thincount" => "Integer",
62
+ "thinid" => "Integer",
63
+ "discards" => "Integer",
64
+ "thinzero" => "Integer",
65
+ "transactionid" => "Integer",
66
+ "raidmismatchcount" => "Integer",
67
+ "raidwritebehind" => "Integer",
68
+ "raidminrecoveryrate" => "Integer",
69
+ "raidmaxrecoveryrate" => "Integer",
70
+ "segsizepe" => "Integer",
71
+ "thinid" => "Integer",
72
+ # New fields for caching
73
+ "cache_total_blocks" => "Integer",
74
+ "cache_used_blocks" => "Integer",
75
+ "cache_dirty_blocks" => "Integer",
76
+ "cache_read_hits" => "Integer",
77
+ "cache_read_misses" => "Integer",
78
+ "cache_write_hits" => "Integer",
79
+ "cache_write_misses" => "Integer"
80
80
  }
81
81
 
82
82
  lvm_source = ARGV[0]
@@ -86,117 +86,116 @@ version = File.readlines(lvm_source + VERSION_FILE)[0].split(' ')[0]
86
86
  lvs = []
87
87
  lvssegs = []
88
88
  pvs = []
89
- pvssegs = []
89
+ pvssegs = []
90
90
  vgs = []
91
91
  File.readlines(lvm_source + COLUMNS_FILE).each do |line|
92
92
  # eg: FIELD(LVS, lv, STR, "LV UUID", lvid.id[1], 38, uuid, "lv_uuid", "Unique identifier")
93
- if line =~ %r{^FIELD\((.*)\)$}
94
- fields = $1.split(', ')
95
- fields.each { |f| f.gsub!(%r{^"}, ''); f.gsub!(%r{"$}, '') }
96
- p fields if debug
97
- app = fields[0]
98
- general_type = fields[2]
99
- specific_type = fields[6]
100
- column = fields[7]
101
- method = fields[7].dup
102
- description = fields[8]
103
- p app, general_type, specific_type, column, method, description if debug
104
-
105
- if ["NUM", "SIZ"].include?(general_type)
106
- attribute_type = TYPE_CONVERSION_MAP[specific_type]
107
- if attribute_type.nil?
108
- puts "Oops, missing type conversion data of column '#{specific_type}' use by '#{app}' which says its going to return a '#{specific_type}'"
109
- puts "Figure out the missing type and rerun."
110
- exit 1
111
- end
112
- else
113
- attribute_type = "String"
93
+ next unless line =~ %r{^FIELD\((.*)\)$}
94
+ fields = $1.split(', ')
95
+ fields.each { |f| f.gsub!(%r{^"}, ''); f.gsub!(%r{"$}, '') }
96
+ p fields if debug
97
+ app = fields[0]
98
+ general_type = fields[2]
99
+ specific_type = fields[6]
100
+ column = fields[7]
101
+ method = fields[7].dup
102
+ description = fields[8]
103
+ p app, general_type, specific_type, column, method, description if debug
104
+
105
+ if ["NUM", "SIZ"].include?(general_type)
106
+ attribute_type = TYPE_CONVERSION_MAP[specific_type]
107
+ if attribute_type.nil?
108
+ puts "Oops, missing type conversion data of column '#{specific_type}' use by '#{app}' which says its going to return a '#{specific_type}'"
109
+ puts "Figure out the missing type and rerun."
110
+ exit 1
114
111
  end
112
+ else
113
+ attribute_type = "String"
114
+ end
115
115
 
116
- # our shorter nicer method names, according to the man page these can be
117
- # dropped when passing column names as arguments as well, but i found a few
118
- # with issues (seg_start).
119
- case app
120
- when "LVS", "LVSINFOSTATUS"
121
- method.sub!(%r{^lv_}, '')
122
- when "SEGS"
123
- method.sub!(%r{^seg_}, '')
124
- when "LABEL"
125
- method.sub!(%r{^pv_}, '')
126
- when "PVS"
127
- method.sub!(%r{^pv_}, '')
128
- when "PVSEGS"
129
- method.sub!(%r{^pvseg_}, '')
130
- when "VGS"
131
- method.sub!(%r{^vg_}, '')
132
- end
116
+ # our shorter nicer method names, according to the man page these can be
117
+ # dropped when passing column names as arguments as well, but i found a few
118
+ # with issues (seg_start).
119
+ case app
120
+ when "LVS", "LVSINFOSTATUS"
121
+ method.sub!(%r{^lv_}, '')
122
+ when "SEGS"
123
+ method.sub!(%r{^seg_}, '')
124
+ when "LABEL"
125
+ method.sub!(%r{^pv_}, '')
126
+ when "PVS"
127
+ method.sub!(%r{^pv_}, '')
128
+ when "PVSEGS"
129
+ method.sub!(%r{^pvseg_}, '')
130
+ when "VGS"
131
+ method.sub!(%r{^vg_}, '')
132
+ end
133
133
 
134
- attribute = {
135
- :method => method,
136
- :column => column,
137
- :type_hint => attribute_type,
138
- :description => description
139
- }
140
-
141
- case app
142
- when "LVS", "LVSINFOSTATUS"
143
- lvs << attribute
144
- when "SEGS"
145
- lvssegs << attribute
146
- when "LABEL"
147
- pvs << attribute
148
- when "PVS"
149
- pvs << attribute
150
- when "PVSEGS"
151
- pvssegs << attribute
152
- when "VGS"
153
- vgs << attribute
154
- end
134
+ attribute = {
135
+ :method => method,
136
+ :column => column,
137
+ :type_hint => attribute_type,
138
+ :description => description
139
+ }
140
+
141
+ case app
142
+ when "LVS", "LVSINFOSTATUS"
143
+ lvs << attribute
144
+ when "SEGS"
145
+ lvssegs << attribute
146
+ when "LABEL"
147
+ pvs << attribute
148
+ when "PVS"
149
+ pvs << attribute
150
+ when "PVSEGS"
151
+ pvssegs << attribute
152
+ when "VGS"
153
+ vgs << attribute
155
154
  end
156
155
  end
157
156
 
158
157
  # we use vg_uuid as our crossover attribute that links vg->lv and vg->pv
159
- attribute = { :method => "vg_uuid",
160
- :column => "vg_uuid",
161
- :type_hint => "String",
158
+ attribute = { :method => "vg_uuid",
159
+ :column => "vg_uuid",
160
+ :type_hint => "String",
162
161
  :description => "For VolumeGroup to LogicalVolume relationship." }
163
162
  lvs << attribute
164
- attribute = { :method => "vg_uuid",
165
- :column => "vg_uuid",
166
- :type_hint => "String",
163
+ attribute = { :method => "vg_uuid",
164
+ :column => "vg_uuid",
165
+ :type_hint => "String",
167
166
  :description => "For VolumeGroup to PhysicalVolume relationship." }
168
167
  pvs << attribute
169
168
 
170
169
  # and we link lv->lvsegment, pv->pvsegment
171
- attribute = { :method => "lv_uuid",
172
- :column => "lv_uuid",
173
- :type_hint => "String",
170
+ attribute = { :method => "lv_uuid",
171
+ :column => "lv_uuid",
172
+ :type_hint => "String",
174
173
  :description => "For LogicalVolume to LogicalVolumeSegment relationship." }
175
174
  lvssegs << attribute
176
- attribute = { :method => "pv_uuid",
177
- :column => "pv_uuid",
178
- :type_hint => "String",
175
+ attribute = { :method => "pv_uuid",
176
+ :column => "pv_uuid",
177
+ :type_hint => "String",
179
178
  :description => "For PhysicalVolume to PhysicalVolumeSegment relationship." }
180
179
  pvssegs << attribute
181
180
 
182
- lvs.sort! {|x,y| x[:column] <=> y[:column]}
183
- lvssegs.sort! {|x,y| x[:column] <=> y[:column]}
184
- pvs.sort! {|x,y| x[:column] <=> y[:column]}
185
- pvssegs.sort! {|x,y| x[:column] <=> y[:column]}
186
- vgs.sort! {|x,y| x[:column] <=> y[:column]}
181
+ lvs.sort! { |x, y| x[:column] <=> y[:column] }
182
+ lvssegs.sort! { |x, y| x[:column] <=> y[:column] }
183
+ pvs.sort! { |x, y| x[:column] <=> y[:column] }
184
+ pvssegs.sort! { |x, y| x[:column] <=> y[:column] }
185
+ vgs.sort! { |x, y| x[:column] <=> y[:column] }
187
186
 
188
187
  FileUtils.mkdir(version)
189
188
 
190
- disclaimer=<<go
189
+ disclaimer = <<go
191
190
  # These are column to object attribute mappings
192
191
  # generated by #{$0} based on
193
192
  # #{lvm_source}/lib/report/columns.h
194
193
  go
195
194
 
196
- File.open("#{version}/lvs.yaml", "w") { |f| f.write(disclaimer); f.write(lvs.to_yaml) }
197
- File.open("#{version}/lvsseg.yaml", "w") { |f| f.write(disclaimer); f.write(lvssegs.to_yaml)}
198
- File.open("#{version}/pvs.yaml", "w") { |f| f.write(disclaimer); f.write(pvs.to_yaml) }
199
- File.open("#{version}/pvsseg.yaml", "w") { |f| f.write(disclaimer); f.write(pvssegs.to_yaml)}
200
- File.open("#{version}/vgs.yaml", "w") { |f| f.write(disclaimer); f.write(vgs.to_yaml) }
195
+ File.open("#{version}/lvs.yaml", "w") { |f| f.write(disclaimer); f.write(lvs.to_yaml) }
196
+ File.open("#{version}/lvsseg.yaml", "w") { |f| f.write(disclaimer); f.write(lvssegs.to_yaml) }
197
+ File.open("#{version}/pvs.yaml", "w") { |f| f.write(disclaimer); f.write(pvs.to_yaml) }
198
+ File.open("#{version}/pvsseg.yaml", "w") { |f| f.write(disclaimer); f.write(pvssegs.to_yaml) }
199
+ File.open("#{version}/vgs.yaml", "w") { |f| f.write(disclaimer); f.write(vgs.to_yaml) }
201
200
 
202
201
  puts "Done."
@@ -1,15 +1,15 @@
1
1
  $:.unshift(File.expand_path('../lib/', __FILE__))
2
2
  require 'lvm/attributes'
3
3
 
4
- Gem::Specification.new do |gem|
5
- gem.authors = ["Greg Symons", "Matthew Kent"]
6
- gem.email = ["mkent@magoazul.com", 'gsymons@gsconsulting.biz']
7
- gem.description = %q{A list of attributes for LVM objects}
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Greg Symons", "Elan Ruusamäe", "Matthew Kent"]
6
+ gem.email = ["mkent@magoazul.com", 'gsymons@gsconsulting.biz']
7
+ gem.description = 'A list of attributes for LVM objects'
8
8
  gem.license = "MIT"
9
- gem.summary = %q{A list of attributes for LVM objects}
9
+ gem.summary = 'A list of attributes for LVM objects'
10
10
  gem.homepage = "https://github.com/gregsymons/di-ruby-lvm-attrib"
11
- gem.executables = [ 'generate_field_data' ]
12
-
11
+ gem.executables = ['generate_field_data']
12
+
13
13
  gem.files = `git ls-files`.split($\)
14
14
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
15
15
  gem.name = "di-ruby-lvm-attrib"
@@ -2,8 +2,8 @@ require 'yaml'
2
2
 
3
3
  module LVM
4
4
  module Attributes
5
- VERSION = '0.0.23'
6
-
5
+ VERSION = '0.0.24'
6
+
7
7
  def load(version, name)
8
8
  cwd = File.dirname(__FILE__)
9
9
 
@@ -20,10 +20,10 @@ module LVM
20
20
  begin
21
21
  return YAML.load_file(file)
22
22
  rescue Errno::ENOENT => e
23
- raise ArgumentError.new("Unable to load lvm attributes [#{name}] for version [#{version}]. " +
23
+ raise ArgumentError.new("Unable to load lvm attributes [#{name}] for version [#{version}]. " \
24
24
  "The version/object may not be supported or you may need to upgrade the di-ruby-lvm-attrib gem. Error [#{e.message}]")
25
25
  end
26
26
  end
27
27
  module_function :load
28
- end # module Attributes
28
+ end # module Attributes
29
29
  end # module LVM
@@ -0,0 +1,228 @@
1
+ # These are column to object attribute mappings
2
+ # generated by bin/generate_field_data based on
3
+ # ../lvm2-2_02_120/lib/report/columns.h
4
+ ---
5
+ - :method: convert_lv
6
+ :column: convert_lv
7
+ :type_hint: String
8
+ :description: For lvconvert
9
+ - :method: copy_percent
10
+ :column: copy_percent
11
+ :type_hint: String
12
+ :description: For RAID
13
+ - :method: data_lv
14
+ :column: data_lv
15
+ :type_hint: String
16
+ :description: For thin and cache pools
17
+ - :method: data_percent
18
+ :column: data_percent
19
+ :type_hint: String
20
+ :description: For snapshot and thin pools and volumes
21
+ - :method: active
22
+ :column: lv_active
23
+ :type_hint: String
24
+ :description: Active state of the LV.
25
+ - :method: active_exclusively
26
+ :column: lv_active_exclusively
27
+ :type_hint: String
28
+ :description: Set if the LV is active exclusively.
29
+ - :method: active_locally
30
+ :column: lv_active_locally
31
+ :type_hint: String
32
+ :description: Set if the LV is active locally.
33
+ - :method: active_remotely
34
+ :column: lv_active_remotely
35
+ :type_hint: String
36
+ :description: Set if the LV is active remotely.
37
+ - :method: allocation_locked
38
+ :column: lv_allocation_locked
39
+ :type_hint: String
40
+ :description: Set if LV is locked against allocation changes.
41
+ - :method: allocation_policy
42
+ :column: lv_allocation_policy
43
+ :type_hint: String
44
+ :description: LV allocation policy.
45
+ - :method: ancestors
46
+ :column: lv_ancestors
47
+ :type_hint: String
48
+ :description: Ancestors of this LV.
49
+ - :method: attr
50
+ :column: lv_attr
51
+ :type_hint: String
52
+ :description: Various attributes - see man page.
53
+ - :method: converting
54
+ :column: lv_converting
55
+ :type_hint: String
56
+ :description: Set if LV is being converted.
57
+ - :method: descendants
58
+ :column: lv_descendants
59
+ :type_hint: String
60
+ :description: Descendants of this LV.
61
+ - :method: dm_path
62
+ :column: lv_dm_path
63
+ :type_hint: String
64
+ :description: Internal device-mapper pathname for LV (in /dev/mapper directory).
65
+ - :method: fixed_minor
66
+ :column: lv_fixed_minor
67
+ :type_hint: String
68
+ :description: Set if LV has fixed minor number assigned.
69
+ - :method: full_name
70
+ :column: lv_full_name
71
+ :type_hint: String
72
+ :description: Full name of LV including its VG
73
+ - :method: host
74
+ :column: lv_host
75
+ :type_hint: String
76
+ :description: Creation host of the LV
77
+ - :method: image_synced
78
+ :column: lv_image_synced
79
+ :type_hint: String
80
+ :description: Set if mirror/RAID image is synchronized.
81
+ - :method: initial_image_sync
82
+ :column: lv_initial_image_sync
83
+ :type_hint: String
84
+ :description: Set if mirror/RAID images underwent initial resynchronization.
85
+ - :method: layout
86
+ :column: lv_layout
87
+ :type_hint: String
88
+ :description: LV layout.
89
+ - :method: major
90
+ :column: lv_major
91
+ :type_hint: String
92
+ :description: Persistent major number or -1 if not persistent.
93
+ - :method: merge_failed
94
+ :column: lv_merge_failed
95
+ :type_hint: String
96
+ :description: Set if snapshot merge failed.
97
+ - :method: merging
98
+ :column: lv_merging
99
+ :type_hint: String
100
+ :description: Set if snapshot LV is being merged to origin.
101
+ - :method: metadata_size
102
+ :column: lv_metadata_size
103
+ :type_hint: Integer
104
+ :description: For thin and cache pools
105
+ - :method: minor
106
+ :column: lv_minor
107
+ :type_hint: String
108
+ :description: Persistent minor number or -1 if not persistent.
109
+ - :method: modules
110
+ :column: lv_modules
111
+ :type_hint: String
112
+ :description: Kernel device-mapper modules required for this LV.
113
+ - :method: name
114
+ :column: lv_name
115
+ :type_hint: String
116
+ :description: Name. LVs created for internal use are enclosed in brackets.
117
+ - :method: parent
118
+ :column: lv_parent
119
+ :type_hint: String
120
+ :description: For LVs that are components of another LV
121
+ - :method: path
122
+ :column: lv_path
123
+ :type_hint: String
124
+ :description: Full pathname for LV. Blank for internal LVs.
125
+ - :method: profile
126
+ :column: lv_profile
127
+ :type_hint: String
128
+ :description: Configuration profile attached to this LV.
129
+ - :method: read_ahead
130
+ :column: lv_read_ahead
131
+ :type_hint: String
132
+ :description: Read ahead setting in current units.
133
+ - :method: role
134
+ :column: lv_role
135
+ :type_hint: String
136
+ :description: LV role.
137
+ - :method: size
138
+ :column: lv_size
139
+ :type_hint: Integer
140
+ :description: Size of LV in current units.
141
+ - :method: skip_activation
142
+ :column: lv_skip_activation
143
+ :type_hint: String
144
+ :description: Set if LV is skipped on activation.
145
+ - :method: snapshot_invalid
146
+ :column: lv_snapshot_invalid
147
+ :type_hint: String
148
+ :description: Set if snapshot LV is invalid.
149
+ - :method: tags
150
+ :column: lv_tags
151
+ :type_hint: String
152
+ :description: Tags
153
+ - :method: time
154
+ :column: lv_time
155
+ :type_hint: String
156
+ :description: Creation time of the LV
157
+ - :method: uuid
158
+ :column: lv_uuid
159
+ :type_hint: String
160
+ :description: Unique identifier.
161
+ - :method: when_full
162
+ :column: lv_when_full
163
+ :type_hint: String
164
+ :description: For thin pools
165
+ - :method: metadata_lv
166
+ :column: metadata_lv
167
+ :type_hint: String
168
+ :description: For thin and cache pools
169
+ - :method: metadata_percent
170
+ :column: metadata_percent
171
+ :type_hint: String
172
+ :description: For thin pools
173
+ - :method: mirror_log
174
+ :column: mirror_log
175
+ :type_hint: String
176
+ :description: For mirrors
177
+ - :method: move_pv
178
+ :column: move_pv
179
+ :type_hint: String
180
+ :description: For pvmove
181
+ - :method: origin
182
+ :column: origin
183
+ :type_hint: String
184
+ :description: For snapshots
185
+ - :method: origin_size
186
+ :column: origin_size
187
+ :type_hint: Integer
188
+ :description: For snapshots
189
+ - :method: pool_lv
190
+ :column: pool_lv
191
+ :type_hint: String
192
+ :description: For thin volumes
193
+ - :method: raid_max_recovery_rate
194
+ :column: raid_max_recovery_rate
195
+ :type_hint: Integer
196
+ :description: For RAID1
197
+ - :method: raid_min_recovery_rate
198
+ :column: raid_min_recovery_rate
199
+ :type_hint: Integer
200
+ :description: For RAID1
201
+ - :method: raid_mismatch_count
202
+ :column: raid_mismatch_count
203
+ :type_hint: Integer
204
+ :description: For RAID
205
+ - :method: raid_sync_action
206
+ :column: raid_sync_action
207
+ :type_hint: String
208
+ :description: For RAID
209
+ - :method: raid_write_behind
210
+ :column: raid_write_behind
211
+ :type_hint: Integer
212
+ :description: For RAID1
213
+ - :method: seg_count
214
+ :column: seg_count
215
+ :type_hint: Integer
216
+ :description: Number of segments in LV.
217
+ - :method: snap_percent
218
+ :column: snap_percent
219
+ :type_hint: String
220
+ :description: For snapshots
221
+ - :method: sync_percent
222
+ :column: sync_percent
223
+ :type_hint: String
224
+ :description: For RAID
225
+ - :method: vg_uuid
226
+ :column: vg_uuid
227
+ :type_hint: String
228
+ :description: For VolumeGroup to LogicalVolume relationship.
@@ -0,0 +1,104 @@
1
+ # These are column to object attribute mappings
2
+ # generated by bin/generate_field_data based on
3
+ # ../lvm2-2_02_120/lib/report/columns.h
4
+ ---
5
+ - :method: cache_policy
6
+ :column: cache_policy
7
+ :type_hint: String
8
+ :description: The cache policy (cached segments only).
9
+ - :method: cache_settings
10
+ :column: cache_settings
11
+ :type_hint: String
12
+ :description: Cache settings/parameters (cached segments only).
13
+ - :method: cachemode
14
+ :column: cachemode
15
+ :type_hint: String
16
+ :description: For cache pools
17
+ - :method: chunk_size
18
+ :column: chunk_size
19
+ :type_hint: Integer
20
+ :description: For snapshots
21
+ - :method: chunksize
22
+ :column: chunksize
23
+ :type_hint: Integer
24
+ :description: For snapshots
25
+ - :method: devices
26
+ :column: devices
27
+ :type_hint: String
28
+ :description: Underlying devices used with starting extent numbers.
29
+ - :method: discards
30
+ :column: discards
31
+ :type_hint: String
32
+ :description: For thin pools
33
+ - :method: lv_uuid
34
+ :column: lv_uuid
35
+ :type_hint: String
36
+ :description: For LogicalVolume to LogicalVolumeSegment relationship.
37
+ - :method: region_size
38
+ :column: region_size
39
+ :type_hint: Integer
40
+ :description: For mirrors
41
+ - :method: regionsize
42
+ :column: regionsize
43
+ :type_hint: Integer
44
+ :description: For mirrors
45
+ - :method: monitor
46
+ :column: seg_monitor
47
+ :type_hint: String
48
+ :description: Dmeventd monitoring status of the segment.
49
+ - :method: pe_ranges
50
+ :column: seg_pe_ranges
51
+ :type_hint: String
52
+ :description: Ranges of Physical Extents of underlying devices in command line format.
53
+ - :method: size
54
+ :column: seg_size
55
+ :type_hint: Integer
56
+ :description: Size of segment in current units.
57
+ - :method: size_pe
58
+ :column: seg_size_pe
59
+ :type_hint: Integer
60
+ :description: Size of segment in physical extents.
61
+ - :method: start
62
+ :column: seg_start
63
+ :type_hint: Integer
64
+ :description: Offset within the LV to the start of the segment in current units.
65
+ - :method: start_pe
66
+ :column: seg_start_pe
67
+ :type_hint: Integer
68
+ :description: Offset within the LV to the start of the segment in physical extents.
69
+ - :method: tags
70
+ :column: seg_tags
71
+ :type_hint: String
72
+ :description: Tags
73
+ - :method: segtype
74
+ :column: segtype
75
+ :type_hint: String
76
+ :description: Type of LV segment.
77
+ - :method: stripe_size
78
+ :column: stripe_size
79
+ :type_hint: Integer
80
+ :description: For stripes
81
+ - :method: stripes
82
+ :column: stripes
83
+ :type_hint: Integer
84
+ :description: Number of stripes or mirror legs.
85
+ - :method: stripesize
86
+ :column: stripesize
87
+ :type_hint: Integer
88
+ :description: For stripes
89
+ - :method: thin_count
90
+ :column: thin_count
91
+ :type_hint: Integer
92
+ :description: For thin pools
93
+ - :method: thin_id
94
+ :column: thin_id
95
+ :type_hint: Integer
96
+ :description: For thin volume
97
+ - :method: transaction_id
98
+ :column: transaction_id
99
+ :type_hint: Integer
100
+ :description: For thin pools
101
+ - :method: zero
102
+ :column: zero
103
+ :type_hint: String
104
+ :description: For thin pools
@@ -0,0 +1,93 @@
1
+ # These are column to object attribute mappings
2
+ # generated by bin/generate_field_data based on
3
+ # ../lvm2-2_02_120/lib/report/columns.h
4
+ ---
5
+ - :method: dev_size
6
+ :column: dev_size
7
+ :type_hint: Integer
8
+ :description: Size of underlying device in current units.
9
+ - :method: pe_start
10
+ :column: pe_start
11
+ :type_hint: Integer
12
+ :description: Offset to the start of data on the underlying device.
13
+ - :method: allocatable
14
+ :column: pv_allocatable
15
+ :type_hint: String
16
+ :description: Set if this device can be used for allocation.
17
+ - :method: attr
18
+ :column: pv_attr
19
+ :type_hint: String
20
+ :description: Various attributes - see man page.
21
+ - :method: ba_size
22
+ :column: pv_ba_size
23
+ :type_hint: Integer
24
+ :description: Size of PV Bootloader Area in current units.
25
+ - :method: ba_start
26
+ :column: pv_ba_start
27
+ :type_hint: Integer
28
+ :description: Offset to the start of PV Bootloader Area on the underlying device
29
+ in current units.
30
+ - :method: exported
31
+ :column: pv_exported
32
+ :type_hint: String
33
+ :description: Set if this device is exported.
34
+ - :method: fmt
35
+ :column: pv_fmt
36
+ :type_hint: String
37
+ :description: Type of metadata.
38
+ - :method: free
39
+ :column: pv_free
40
+ :type_hint: Integer
41
+ :description: Total amount of unallocated space in current units.
42
+ - :method: mda_count
43
+ :column: pv_mda_count
44
+ :type_hint: Integer
45
+ :description: Number of metadata areas on this device.
46
+ - :method: mda_free
47
+ :column: pv_mda_free
48
+ :type_hint: Integer
49
+ :description: Free metadata area space on this device in current units.
50
+ - :method: mda_size
51
+ :column: pv_mda_size
52
+ :type_hint: Integer
53
+ :description: Size of smallest metadata area on this device in current units.
54
+ - :method: mda_used_count
55
+ :column: pv_mda_used_count
56
+ :type_hint: Integer
57
+ :description: Number of metadata areas in use on this device.
58
+ - :method: missing
59
+ :column: pv_missing
60
+ :type_hint: String
61
+ :description: Set if this device is missing in system.
62
+ - :method: name
63
+ :column: pv_name
64
+ :type_hint: String
65
+ :description: Name.
66
+ - :method: pe_alloc_count
67
+ :column: pv_pe_alloc_count
68
+ :type_hint: Integer
69
+ :description: Total number of allocated Physical Extents.
70
+ - :method: pe_count
71
+ :column: pv_pe_count
72
+ :type_hint: Integer
73
+ :description: Total number of Physical Extents.
74
+ - :method: size
75
+ :column: pv_size
76
+ :type_hint: Integer
77
+ :description: Size of PV in current units.
78
+ - :method: tags
79
+ :column: pv_tags
80
+ :type_hint: String
81
+ :description: Tags
82
+ - :method: used
83
+ :column: pv_used
84
+ :type_hint: Integer
85
+ :description: Total amount of allocated space in current units.
86
+ - :method: uuid
87
+ :column: pv_uuid
88
+ :type_hint: String
89
+ :description: Unique identifier.
90
+ - :method: vg_uuid
91
+ :column: vg_uuid
92
+ :type_hint: String
93
+ :description: For VolumeGroup to PhysicalVolume relationship.
@@ -0,0 +1,16 @@
1
+ # These are column to object attribute mappings
2
+ # generated by bin/generate_field_data based on
3
+ # ../lvm2-2_02_120/lib/report/columns.h
4
+ ---
5
+ - :method: pv_uuid
6
+ :column: pv_uuid
7
+ :type_hint: String
8
+ :description: For PhysicalVolume to PhysicalVolumeSegment relationship.
9
+ - :method: size
10
+ :column: pvseg_size
11
+ :type_hint: Integer
12
+ :description: Number of extents in segment.
13
+ - :method: start
14
+ :column: pvseg_start
15
+ :type_hint: Integer
16
+ :description: Physical Extent number of start of segment.
@@ -0,0 +1,124 @@
1
+ # These are column to object attribute mappings
2
+ # generated by bin/generate_field_data based on
3
+ # ../lvm2-2_02_120/lib/report/columns.h
4
+ ---
5
+ - :method: lv_count
6
+ :column: lv_count
7
+ :type_hint: Integer
8
+ :description: Number of LVs.
9
+ - :method: max_lv
10
+ :column: max_lv
11
+ :type_hint: Integer
12
+ :description: Maximum number of LVs allowed in VG or 0 if unlimited.
13
+ - :method: max_pv
14
+ :column: max_pv
15
+ :type_hint: Integer
16
+ :description: Maximum number of PVs allowed in VG or 0 if unlimited.
17
+ - :method: pv_count
18
+ :column: pv_count
19
+ :type_hint: Integer
20
+ :description: Number of PVs.
21
+ - :method: snap_count
22
+ :column: snap_count
23
+ :type_hint: Integer
24
+ :description: Number of snapshots.
25
+ - :method: allocation_policy
26
+ :column: vg_allocation_policy
27
+ :type_hint: String
28
+ :description: VG allocation policy.
29
+ - :method: attr
30
+ :column: vg_attr
31
+ :type_hint: String
32
+ :description: Various attributes - see man page.
33
+ - :method: clustered
34
+ :column: vg_clustered
35
+ :type_hint: String
36
+ :description: Set if VG is clustered.
37
+ - :method: exported
38
+ :column: vg_exported
39
+ :type_hint: String
40
+ :description: Set if VG is exported.
41
+ - :method: extendable
42
+ :column: vg_extendable
43
+ :type_hint: String
44
+ :description: Set if VG is extendable.
45
+ - :method: extent_count
46
+ :column: vg_extent_count
47
+ :type_hint: Integer
48
+ :description: Total number of Physical Extents.
49
+ - :method: extent_size
50
+ :column: vg_extent_size
51
+ :type_hint: Integer
52
+ :description: Size of Physical Extents in current units.
53
+ - :method: fmt
54
+ :column: vg_fmt
55
+ :type_hint: String
56
+ :description: Type of metadata.
57
+ - :method: free
58
+ :column: vg_free
59
+ :type_hint: Integer
60
+ :description: Total amount of free space in current units.
61
+ - :method: free_count
62
+ :column: vg_free_count
63
+ :type_hint: Integer
64
+ :description: Total number of unallocated Physical Extents.
65
+ - :method: mda_copies
66
+ :column: vg_mda_copies
67
+ :type_hint: Integer
68
+ :description: Target number of in use metadata areas in the VG.
69
+ - :method: mda_count
70
+ :column: vg_mda_count
71
+ :type_hint: Integer
72
+ :description: Number of metadata areas on this VG.
73
+ - :method: mda_free
74
+ :column: vg_mda_free
75
+ :type_hint: Integer
76
+ :description: Free metadata area space for this VG in current units.
77
+ - :method: mda_size
78
+ :column: vg_mda_size
79
+ :type_hint: Integer
80
+ :description: Size of smallest metadata area for this VG in current units.
81
+ - :method: mda_used_count
82
+ :column: vg_mda_used_count
83
+ :type_hint: Integer
84
+ :description: Number of metadata areas in use on this VG.
85
+ - :method: name
86
+ :column: vg_name
87
+ :type_hint: String
88
+ :description: Name.
89
+ - :method: partial
90
+ :column: vg_partial
91
+ :type_hint: String
92
+ :description: Set if VG is partial.
93
+ - :method: permissions
94
+ :column: vg_permissions
95
+ :type_hint: String
96
+ :description: VG permissions.
97
+ - :method: profile
98
+ :column: vg_profile
99
+ :type_hint: String
100
+ :description: Configuration profile attached to this VG.
101
+ - :method: seqno
102
+ :column: vg_seqno
103
+ :type_hint: Integer
104
+ :description: Revision number of internal metadata. Incremented whenever it changes.
105
+ - :method: size
106
+ :column: vg_size
107
+ :type_hint: Integer
108
+ :description: Total size of VG in current units.
109
+ - :method: sysid
110
+ :column: vg_sysid
111
+ :type_hint: String
112
+ :description: System ID of the VG indicating which host owns it.
113
+ - :method: systemid
114
+ :column: vg_systemid
115
+ :type_hint: String
116
+ :description: System ID of the VG indicating which host owns it.
117
+ - :method: tags
118
+ :column: vg_tags
119
+ :type_hint: String
120
+ :description: Tags
121
+ - :method: uuid
122
+ :column: vg_uuid
123
+ :type_hint: String
124
+ :description: Unique identifier.
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: di-ruby-lvm-attrib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.23
4
+ version: 0.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Symons
8
+ - Elan Ruusamäe
8
9
  - Matthew Kent
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2015-12-04 00:00:00.000000000 Z
13
+ date: 2016-02-25 00:00:00.000000000 Z
13
14
  dependencies: []
14
15
  description: A list of attributes for LVM objects
15
16
  email:
@@ -21,17 +22,12 @@ extensions: []
21
22
  extra_rdoc_files: []
22
23
  files:
23
24
  - ".gitignore"
24
- - History.txt
25
+ - CHANGELOG.md
25
26
  - README.md
26
- - Todo.txt
27
+ - TODO.md
27
28
  - bin/generate_field_data
28
29
  - di-ruby-lvm-attrib.gemspec
29
30
  - lib/lvm/attributes.rb
30
- - lib/lvm/attributes/2.0.2.116(2)/lvs.yaml
31
- - lib/lvm/attributes/2.0.2.116(2)/lvsseg.yaml
32
- - lib/lvm/attributes/2.0.2.116(2)/pvs.yaml
33
- - lib/lvm/attributes/2.0.2.116(2)/pvsseg.yaml
34
- - lib/lvm/attributes/2.0.2.116(2)/vgs.yaml
35
31
  - lib/lvm/attributes/2.02.100(2)/lvs.yaml
36
32
  - lib/lvm/attributes/2.02.100(2)/lvsseg.yaml
37
33
  - lib/lvm/attributes/2.02.100(2)/pvs.yaml
@@ -72,6 +68,11 @@ files:
72
68
  - lib/lvm/attributes/2.02.115(2)/pvs.yaml
73
69
  - lib/lvm/attributes/2.02.115(2)/pvsseg.yaml
74
70
  - lib/lvm/attributes/2.02.115(2)/vgs.yaml
71
+ - lib/lvm/attributes/2.02.116(2)/lvs.yaml
72
+ - lib/lvm/attributes/2.02.116(2)/lvsseg.yaml
73
+ - lib/lvm/attributes/2.02.116(2)/pvs.yaml
74
+ - lib/lvm/attributes/2.02.116(2)/pvsseg.yaml
75
+ - lib/lvm/attributes/2.02.116(2)/vgs.yaml
75
76
  - lib/lvm/attributes/2.02.118(2)/lvs.yaml
76
77
  - lib/lvm/attributes/2.02.118(2)/lvsseg.yaml
77
78
  - lib/lvm/attributes/2.02.118(2)/pvs.yaml
@@ -82,6 +83,11 @@ files:
82
83
  - lib/lvm/attributes/2.02.119(2)/pvs.yaml
83
84
  - lib/lvm/attributes/2.02.119(2)/pvsseg.yaml
84
85
  - lib/lvm/attributes/2.02.119(2)/vgs.yaml
86
+ - lib/lvm/attributes/2.02.120(2)/lvs.yaml
87
+ - lib/lvm/attributes/2.02.120(2)/lvsseg.yaml
88
+ - lib/lvm/attributes/2.02.120(2)/pvs.yaml
89
+ - lib/lvm/attributes/2.02.120(2)/pvsseg.yaml
90
+ - lib/lvm/attributes/2.02.120(2)/vgs.yaml
85
91
  - lib/lvm/attributes/2.02.130(2)/lvs.yaml
86
92
  - lib/lvm/attributes/2.02.130(2)/lvsseg.yaml
87
93
  - lib/lvm/attributes/2.02.130(2)/pvs.yaml
data/History.txt DELETED
@@ -1,5 +0,0 @@
1
- === 0.0.1 / 2008-07-21
2
-
3
- * 1 major enhancement
4
- * Birthday!
5
- * Test release.
data/Todo.txt DELETED
@@ -1,4 +0,0 @@
1
- = to do
2
-
3
- == 0.1.1
4
- * attribute generation should be a proper class with a binary invoking it