knife-setup 0.0.5 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/chef/knife/knife-setup.rb +1 -1
- data/lib/knife-setup/version.rb +1 -1
- metadata +1 -1
@@ -185,7 +185,7 @@ class Chef
|
|
185
185
|
bootstrap_client unless config[:nobootstrap]
|
186
186
|
set_run_list(get_node, config[:run_list]) unless config[:run_list].empty?
|
187
187
|
set_env(get_node, config[:environment]) unless config[:environment] == "_default"
|
188
|
-
knife_ssh("chef-client").run
|
188
|
+
knife_ssh("chef-client").run if config[:norunchef]
|
189
189
|
|
190
190
|
end
|
191
191
|
|
data/lib/knife-setup/version.rb
CHANGED