diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-05-25 15:34:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-25 15:34:26 -0500 |
commit | 67a49e3c379b8575b01a5e9cf30841e63e6eba14 (patch) | |
tree | f3aaf958de715a8ef958cd00d98333538c1cc09e | |
parent | 1bf5d534284dfef490c27929433243f95f319550 (diff) | |
parent | c1a9cf211ba7020fedaca54966603ba6bbceca2c (diff) | |
download | chef-67a49e3c379b8575b01a5e9cf30841e63e6eba14.tar.gz |
Merge pull request #6178 from coderanger/no-listen
Missed this which makes some smoke tests for chef-shell fail.
-rw-r--r-- | chef-config/lib/chef-config/config.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chef-config/lib/chef-config/config.rb b/chef-config/lib/chef-config/config.rb index 0666dd869d..beb78f25d0 100644 --- a/chef-config/lib/chef-config/config.rb +++ b/chef-config/lib/chef-config/config.rb @@ -381,10 +381,7 @@ module ChefConfig # Whether Chef Zero local mode should bind to a port. All internal requests # will go through the socketless code path regardless, so the socket is # only needed if other processes will connect to the local mode server. - # - # For compatibility this is set to true but it will be changed to false in - # the future. - default :listen, true + default :listen, false config_context :chef_zero do config_strict_mode true |