diff options
Diffstat (limited to 'lib/chef/shell')
-rw-r--r-- | lib/chef/shell/shell_session.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/shell/shell_session.rb b/lib/chef/shell/shell_session.rb index 6d8b6f14ae..0a8cba5be3 100644 --- a/lib/chef/shell/shell_session.rb +++ b/lib/chef/shell/shell_session.rb @@ -150,7 +150,7 @@ module Shell private def rebuild_node - Chef::Config[:solo] = true + Chef::Config[:solo_legacy_mode] = true @client = Chef::Client.new(nil, Chef::Config[:shell_config]) @client.run_ohai @client.load_node @@ -182,7 +182,7 @@ module Shell def rebuild_node # Tell the client we're chef solo so it won't try to contact the server - Chef::Config[:solo] = true + Chef::Config[:solo_legacy_mode] = true @client = Chef::Client.new(nil, Chef::Config[:shell_config]) @client.run_ohai @client.load_node @@ -213,7 +213,7 @@ module Shell def rebuild_node # Make sure the client knows this is not chef solo - Chef::Config[:solo] = false + Chef::Config[:solo_legacy_mode] = false @client = Chef::Client.new(nil, Chef::Config[:shell_config]) @client.run_ohai @client.register |