stemcell 0.2.3 → 0.2.4

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/README.md CHANGED
@@ -58,7 +58,7 @@ $ ./bin/stemcell --help
58
58
  ### Watching install:
59
59
 
60
60
  ```bash
61
- $ ssh unbutu@$IP 'tail -f /var/log/init*'
61
+ $ ssh ubuntu@$IP 'tail -f /var/log/init*'
62
62
  ```
63
63
 
64
64
  ### Terminating:
@@ -91,5 +91,5 @@ Finally, we couldn't resist doing a bit of code archeology.
91
91
  People have been using chef with EC2 for a long time!
92
92
  One early article is [this one](http://web.archive.org/web/20110404114025/http://probablyinteractive.com/2009/3/29/Amazon%20EC2%20+%20Chef%20=%20Mmmmm.html), which isn't even on the web anymore.
93
93
  However, it's spawned some recently-active tools like [this](https://github.com/conormullen/chef-bootstrap) and [this](https://github.com/grempe/chef-solo-bootstrap).
94
- Similar approaches are mentioned [here](http://www.opinionatedprogrammer.com/2011/06/chef-solo-tutorial-managing-a-single-server-with-chef/), with code [herh](https://github.com/ciastek/ubuntu-chef-solo) or [here](https://github.com/riywo/ubuntu-chef-solo) (with accompanying [blog post](http://weblog.riywo.com/post/35976125760))
94
+ Similar approaches are mentioned [here](http://www.opinionatedprogrammer.com/2011/06/chef-solo-tutorial-managing-a-single-server-with-chef/), with code [here](https://github.com/ciastek/ubuntu-chef-solo) or [here](https://github.com/riywo/ubuntu-chef-solo) (with accompanying [blog post](http://weblog.riywo.com/post/35976125760))
95
95
  [This article](http://illuminatedcomputing.com/posts/2012/02/simple-chef-solo-tutorial/), also mentions many worthwhile predecessors.
data/bin/necrosis CHANGED
@@ -6,7 +6,7 @@ require 'aws-sdk'
6
6
  require 'trollop'
7
7
 
8
8
  options = Trollop::options do
9
- version "stemcell #{Stemcell::VERSION} (c) Airbnb, Inc."
9
+ version "Necrosis 0.1.0 (c) Airbnb, Inc."
10
10
  banner "Necrosis: the killing script"
11
11
 
12
12
  opt('aws_access_key',
@@ -1,3 +1,3 @@
1
1
  module Stemcell
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
data/lib/stemcell.rb CHANGED
@@ -93,7 +93,7 @@ module Stemcell
93
93
  def kill(instances)
94
94
  return if instances.nil?
95
95
  instances.each do |instance|
96
- log.warn "Terminating instance #{instance.instance_id}"
96
+ @log.warn "Terminating instance #{instance.instance_id}"
97
97
  instance.terminate
98
98
  end
99
99
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stemcell
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
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-03-02 00:00:00.000000000 Z
12
+ date: 2013-03-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: trollop