paratele 0.2 → 0.2.1
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/bin/paratele +2 -1
- data/paratele.gemspec +1 -1
- metadata +1 -1
data/bin/paratele
CHANGED
|
@@ -96,6 +96,7 @@ when "run" then
|
|
|
96
96
|
else
|
|
97
97
|
environment["servers"].keys
|
|
98
98
|
end
|
|
99
|
+
attributes = environment["attributes"] || {}
|
|
99
100
|
|
|
100
101
|
exit_status = 0
|
|
101
102
|
|
|
@@ -108,7 +109,7 @@ when "run" then
|
|
|
108
109
|
print " #{recipe}: "
|
|
109
110
|
|
|
110
111
|
if File.exists?(path("recipes", recipe))
|
|
111
|
-
stdout, status = run(server, recipe, command,
|
|
112
|
+
stdout, status = run(server, recipe, command, attributes)
|
|
112
113
|
|
|
113
114
|
case status
|
|
114
115
|
when nil
|
data/paratele.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "paratele"
|
|
3
|
-
s.version = "0.2"
|
|
3
|
+
s.version = "0.2.1"
|
|
4
4
|
s.summary = "Provisioning at a distance"
|
|
5
5
|
s.description = "Tele is a small provisioning framework that allows you to run bash scripts on remote servers over SSH."
|
|
6
6
|
s.authors = ["Damian Janowski", "Michel Martens", "Harry Vangberg"]
|