You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With no changes to my wrapper cookbook, 1.6.1 does not add ListenAddress entries to the sshd_config file. Reverting to 1.5.2 fixes this behavior and adds the desired ListenAddress entries from the attributes set by the wrapping cookbook.
This is set by the following line where listen_ips is an array of strings that represent ips and ip:port node.set['openssh']['server']['listen_address'] = listen_ips
CentOS 5.7
Chef 12.6.0
The text was updated successfully, but these errors were encountered:
I found the problem was with my run order.
With 2.5.1 i was able to node.set AFTER include_recipe "openssh" was declared
With 2.6.1 release the node.set must be BEFORE the include_recipe
this isn't a major bug so I am closing this ticket
With no changes to my wrapper cookbook, 1.6.1 does not add ListenAddress entries to the sshd_config file. Reverting to 1.5.2 fixes this behavior and adds the desired ListenAddress entries from the attributes set by the wrapping cookbook.
This is set by the following line where listen_ips is an array of strings that represent ips and ip:port
node.set['openssh']['server']['listen_address'] = listen_ips
CentOS 5.7
Chef 12.6.0
The text was updated successfully, but these errors were encountered: