ironfan 4.8.3 → 4.8.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +3 -0
- data/VERSION +1 -1
- data/ironfan.gemspec +2 -2
- data/lib/chef/knife/cluster_start.rb +2 -2
- data/lib/chef/knife/cluster_stop.rb +2 -2
- metadata +3 -3
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.8.
|
1
|
+
4.8.4
|
data/ironfan.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "ironfan"
|
8
|
-
s.version = "4.8.
|
8
|
+
s.version = "4.8.4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Infochimps"]
|
12
|
-
s.date = "2013-02-
|
12
|
+
s.date = "2013-02-27"
|
13
13
|
s.description = "Ironfan allows you to orchestrate not just systems but clusters of machines. It includes a powerful layer on top of knife and a collection of cloud cookbooks."
|
14
14
|
s.email = "coders@infochimps.com"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -23,8 +23,8 @@ class Chef
|
|
23
23
|
class ClusterStart < Ironfan::Script
|
24
24
|
import_banner_and_options(Ironfan::Script)
|
25
25
|
|
26
|
-
def relevant?(
|
27
|
-
(not bogus?) && stopped?
|
26
|
+
def relevant?(computer)
|
27
|
+
(not computer.bogus?) && computer.stopped?
|
28
28
|
end
|
29
29
|
|
30
30
|
def perform_execution(target)
|
@@ -23,8 +23,8 @@ class Chef
|
|
23
23
|
class ClusterStop < Ironfan::Script
|
24
24
|
import_banner_and_options(Ironfan::Script)
|
25
25
|
|
26
|
-
def relevant?(
|
27
|
-
(not bogus?) &&
|
26
|
+
def relevant?(computer)
|
27
|
+
(not computer.bogus?) && computer.running?
|
28
28
|
end
|
29
29
|
|
30
30
|
def perform_execution(target)
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ironfan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 4.8.
|
5
|
+
version: 4.8.4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Infochimps
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2013-02-
|
13
|
+
date: 2013-02-27 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: chef
|
@@ -284,7 +284,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
284
284
|
requirements:
|
285
285
|
- - ">="
|
286
286
|
- !ruby/object:Gem::Version
|
287
|
-
hash:
|
287
|
+
hash: -3797821148458138452
|
288
288
|
segments:
|
289
289
|
- 0
|
290
290
|
version: "0"
|