ec2launcher 1.6.2 → 1.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.6.3
2
+
3
+ * Fixed typo in block read-ahead settings.
4
+
1
5
  ## 1.6.2
2
6
 
3
7
  * Fixed bug launching VPC instances.
@@ -2,5 +2,5 @@
2
2
  # Copyright (c) 2012 Sean Laurent
3
3
  #
4
4
  module EC2Launcher
5
- VERSION = "1.6.2"
5
+ VERSION = "1.6.3"
6
6
  end
@@ -392,7 +392,7 @@ EOF
392
392
  raid_device_name = setup_attached_raid_array(@system_arch, raid_devices, "/dev/md#{(127 - raid_array_count).to_s}", block_device.raid_level.to_i, ! @options.clone_host.nil?)
393
393
 
394
394
  if block_device.respond_to?(:block_ra) && block_device.block_ra
395
- raid_devices.each {|device_name| set_block_read_ahead("#{device_name}1", block_device.read_ahead) }
395
+ raid_devices.each {|device_name| set_block_read_ahead("#{device_name}1", block_device.block_ra) }
396
396
  set_block_read_ahead(raid_device_name, block_device.block_ra)
397
397
  end
398
398
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ec2launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.2
4
+ version: 1.6.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-03 00:00:00.000000000 Z
12
+ date: 2013-01-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-sdk