boucher 0.2.0 → 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/boucher.gemspec +1 -1
- data/lib/boucher/tasks/servers.rake +1 -1
- metadata +1 -1
data/boucher.gemspec
CHANGED
@@ -114,7 +114,7 @@ web console and click Instance Actions -> Change Termination Protection -> Yes."
|
|
114
114
|
desc "Cook the specified meal on the instance(s) specified by the given id or meal"
|
115
115
|
task :chef, [:meal, :server_id] do |t, args|
|
116
116
|
Boucher.assert_env!
|
117
|
-
servers = resolve_servers(args.server_id || args.meal)
|
117
|
+
servers = Boucher.resolve_servers(args.server_id || args.meal)
|
118
118
|
servers.each do |server|
|
119
119
|
Boucher.cook_meal(server, args.meal)
|
120
120
|
end
|