rubber 1.9.0 → 1.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,20 @@
1
+ 1.9.0
2
+ -----
3
+
4
+ Regenerate gemspec for version 1.9.0 <5d296e4> [Kevin Menard]
5
+ Added the ability to set up LVM volumes. <89e865c> [Kevin Menard]
6
+ Fixed a typo. <26eda95> [Kevin Menard]
7
+ Merge branch 'master' of https://github.com/bpaul/rubber into bpaul-master <91fc6ff> [Kevin Menard]
8
+ Merge branch 'master' of https://github.com/jcrumpton/rubber into jcrumpton-master <a4a3f24> [Kevin Menard]
9
+ Merge branch 'master' of github.com:wr0ngway/rubber <ef88020> [Matt Conway]
10
+ specify raid metadata level and admin email <c841ee2> [Matt Conway]
11
+ extra error checking to make it easier to see yml failures <c89e97a> [Matt Conway]
12
+ fix pub key docs <9c69976> [Matt Conway]
13
+ fix postgresql recipe roles <873a3b9> [Matt Conway]
14
+ A couple of Sphinx updates: Updated the location of the download on sphinxsearch.com Bumped the default version to 0.9.9 <d6695c3> [Barry Paul]
15
+ fixed typo <45b8a07> [James Crumpton]
16
+ It's no longer gemcutter:release. <f04deb1> [Kevin Menard]
17
+
1
18
  1.8.0
2
19
  -----
3
20
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.9.1
@@ -221,6 +221,21 @@ staging_roles: "web,app,db:primary=true"
221
221
  # filesystem_opts: -f # the filesystem opts in mkfs
222
222
  # raid_level: 0 # the raid level to use for the array
223
223
  # source_devices: [/dev/sdx, /dev/sdy] # the source EBS devices we are creating raid array from
224
+ #
225
+ # # for LVM volumes, you'll need to add lvm2 to packages. Likewise,
226
+ # # xfsprogs is needed for xfs filesystem support
227
+ # packages: [xfsprogs, lvm2]
228
+ # lvm_volume_groups:
229
+ # - name: vg # The volume group name
230
+ # physical_volumes: [/dev/sdx, /dev/sdy] # Devices used for LVM group (you can use just one, but you can't stripe then)
231
+ # extent_size: 32 # Size of the volume extent in MB
232
+ # volumes:
233
+ # - name: lv # Name of the logical volume
234
+ # size: 999.9 # Size of volume in GB (slightly less than sum of all physical volumes because LVM reserves some space)
235
+ # stripes: 2 # Count of stripes for volume
236
+ # filesystem: xfs # The filesystem to create on the logical volume
237
+ # filesystem_opts: -f # the filesystem opts in mkfs
238
+ # mount: /mnt/large_work_dir # The directory to mount this LVM volume to
224
239
 
225
240
  # OPTIONAL: You can also define your own variables here for use when
226
241
  # transforming config files, and they will be available in your config
@@ -221,6 +221,21 @@ staging_roles: "web,app,db:primary=true"
221
221
  # filesystem_opts: -f # the filesystem opts in mkfs
222
222
  # raid_level: 0 # the raid level to use for the array
223
223
  # source_devices: [/dev/sdx, /dev/sdy] # the source EBS devices we are creating raid array from
224
+ #
225
+ # # for LVM volumes, you'll need to add lvm2 to packages. Likewise,
226
+ # # xfsprogs is needed for xfs filesystem support
227
+ # packages: [xfsprogs, lvm2]
228
+ # lvm_volume_groups:
229
+ # - name: vg # The volume group name
230
+ # physical_volumes: [/dev/sdx, /dev/sdy] # Devices used for LVM group (you can use just one, but you can't stripe then)
231
+ # extent_size: 32 # Size of the volume extent in MB
232
+ # volumes:
233
+ # - name: lv # Name of the logical volume
234
+ # size: 999.9 # Size of volume in GB (slightly less than sum of all physical volumes because LVM reserves some space)
235
+ # stripes: 2 # Count of stripes for volume
236
+ # filesystem: xfs # The filesystem to create on the logical volume
237
+ # filesystem_opts: -f # the filesystem opts in mkfs
238
+ # mount: /mnt/large_work_dir # The directory to mount this LVM volume to
224
239
 
225
240
  # OPTIONAL: You can also define your own variables here for use when
226
241
  # transforming config files, and they will be available in your config
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubber
3
3
  version: !ruby/object:Gem::Version
4
- hash: 51
4
+ hash: 49
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 9
9
- - 0
10
- version: 1.9.0
9
+ - 1
10
+ version: 1.9.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matt Conway