diff --git a/lib/smart_proxy_ansible/runner/ansible_runner.rb b/lib/smart_proxy_ansible/runner/ansible_runner.rb index 074d3d2..46093ab 100644 --- a/lib/smart_proxy_ansible/runner/ansible_runner.rb +++ b/lib/smart_proxy_ansible/runner/ansible_runner.rb @@ -312,6 +312,12 @@ def rebuild_secrets(inventory, input) inventory end + + def publish_data_for(hostname, content, type) + @outputs.each_key do |peer_hostname, _| + super(peer_hostname, content, peer_hostname == hostname ? type : 'debug') + end + end end end end