knife-setup 0.0.5 → 1.0.0
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/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