nephele 0.1.10 → 0.1.11
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/Rakefile +3 -0
- data/VERSION +1 -1
- data/bin/neph +1 -1
- data/bin/nephele +1 -1
- data/lib/nephele/rackspace.rb +1 -1
- data/nephele.gemspec +1 -1
- metadata +3 -3
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.
|
|
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 "
|
|
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 "
|
|
104
|
+
system %[time ssh -o "StrictHostKeyChecking=no" -A root@#{@node.addresses[:public]} "#{cmd}"]
|
|
105
105
|
end
|
|
106
106
|
|
|
107
107
|
def prestrap_cmd
|
data/lib/nephele/rackspace.rb
CHANGED
|
@@ -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
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:
|
|
4
|
+
hash: 13
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 11
|
|
10
|
+
version: 0.1.11
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jeffrey O'Dell
|