murakumo 0.4.1 → 0.4.2

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.
@@ -15,5 +15,5 @@ hostname = tags['Name'] || `curl -s http://169.254.169.254/latest/meta-data/loca
15
15
  instances = Murakumo::Util.ec2_instances(AMAZON_ACCESS_KEY_ID, AMAZON_SECRET_ACCESS_KEY)
16
16
 
17
17
  # rewrite initial-nodes
18
- nodes = instances.map {|i| i['ipAddress'] || '' }.select {|i| not i.empty? }
18
+ nodes = instances.map {|i| i['privateIpAddress'] || '' }.select {|i| not i.empty? }
19
19
  @options['initial-nodes'] = nodes.join(',') unless nodes.empty?
@@ -1,5 +1,5 @@
1
1
  module Murakumo
2
- VERSION = '0.4.1'
2
+ VERSION = '0.4.2'
3
3
 
4
4
  # Priority
5
5
  MASTER = 1
@@ -44,7 +44,6 @@ module Murakumo
44
44
  end
45
45
  end
46
46
  end
47
-
48
47
  private_class_method :walk_item
49
48
 
50
49
  end # Util
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: murakumo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
5
- prerelease:
4
+ hash: 11
5
+ prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 1
10
- version: 0.4.1
9
+ - 2
10
+ version: 0.4.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - winebarrel
@@ -15,7 +15,8 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-12-30 00:00:00 Z
18
+ date: 2011-12-30 00:00:00 +00:00
19
+ default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
22
  name: rubydns
@@ -41,12 +42,12 @@ dependencies:
41
42
  requirements:
42
43
  - - ">="
43
44
  - !ruby/object:Gem::Version
44
- hash: 21
45
+ hash: 11
45
46
  segments:
46
47
  - 0
47
48
  - 1
48
- - 7
49
- version: 0.1.7
49
+ - 8
50
+ version: 0.1.8
50
51
  type: :runtime
51
52
  version_requirements: *id002
52
53
  - !ruby/object:Gem::Dependency
@@ -124,6 +125,7 @@ files:
124
125
  - etc/gai.conf.example
125
126
  - etc/murakumo-update-config-for-ec2
126
127
  - etc/dhclient-script.patch
128
+ has_rdoc: true
127
129
  homepage: https://bitbucket.org/winebarrel/murakumo
128
130
  licenses: []
129
131
 
@@ -153,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
155
  requirements: []
154
156
 
155
157
  rubyforge_project:
156
- rubygems_version: 1.8.13
158
+ rubygems_version: 1.3.7
157
159
  signing_key:
158
160
  specification_version: 3
159
161
  summary: Murakumo is the internal DNS server which manages name information using a gossip protocol.