nephele 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -27,6 +27,9 @@ Jeweler::Tasks.new do |gem|
27
27
  gem.homepage = 'https://github.com/jodell/nephele'
28
28
  end
29
29
 
30
+ desc 'Convenience task for bumping a patchlevel and publishing'
31
+ task :'push:patch' => [:'version:bump:patch', :push]
32
+
30
33
  desc 'rubygems.org publishing'
31
34
  task :push => :release do
32
35
  ver = "nephele-#{File.read('VERSION')}"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.10
1
+ 0.1.11
data/bin/neph CHANGED
@@ -101,7 +101,7 @@ class Nephele::Runner < Optitron::CLI
101
101
 
102
102
  def node_run(cmd)
103
103
  puts "Running #{cmd}" if ENV['verbose']
104
- system %[time ssh -o "StrictHostChecking=no" -A root@#{@node.addresses[:public]} "#{cmd}"]
104
+ system %[time ssh -o "StrictHostKeyChecking=no" -A root@#{@node.addresses[:public]} "#{cmd}"]
105
105
  end
106
106
 
107
107
  def prestrap_cmd
data/bin/nephele CHANGED
@@ -101,7 +101,7 @@ class Nephele::Runner < Optitron::CLI
101
101
 
102
102
  def node_run(cmd)
103
103
  puts "Running #{cmd}" if ENV['verbose']
104
- system %[time ssh -o "StrictHostChecking=no" -A root@#{@node.addresses[:public]} "#{cmd}"]
104
+ system %[time ssh -o "StrictHostKeyChecking=no" -A root@#{@node.addresses[:public]} "#{cmd}"]
105
105
  end
106
106
 
107
107
  def prestrap_cmd
@@ -134,7 +134,7 @@ module Nephele::Rackspace::Util
134
134
  end
135
135
 
136
136
  def known_hosts_file
137
- File.open('/tmp/known_hosts.nephele') { |f| f << known_hosts; f.path }
137
+ File.open('/tmp/known_hosts.nephele', 'w') { |f| f << known_hosts; f.path }
138
138
  end
139
139
 
140
140
  def vpn_pass_file(passfile = File.expand_path('~/.vpnpass'))
data/nephele.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{nephele}
8
- s.version = "0.1.10"
8
+ s.version = "0.1.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeffrey O'Dell"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nephele
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 10
10
- version: 0.1.10
9
+ - 11
10
+ version: 0.1.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeffrey O'Dell