Showing with 11 additions and 3 deletions.
  1. +8 −0 CHANGELOG.md
  2. +1 −1 manifests/plugin/ansible/params.pp
  3. +1 −1 metadata.json
  4. +1 −1 spec/classes/foreman_proxy__plugin__ansible_spec.rb
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [7.2.2](https://github.com/theforeman/puppet-foreman_proxy/tree/7.2.2) (2018-06-18)

[Full Changelog](https://github.com/theforeman/puppet-foreman_proxy/compare/7.2.1...7.2.2)

**Fixed bugs:**

- Fixes [\#23905](https://projects.theforeman.org/issues/23905) - Use /usr/share/foreman-proxy as ansible\_dir [\#432](https://github.com/theforeman/puppet-foreman_proxy/pull/432) ([dLobatog](https://github.com/dLobatog))

## [7.2.1](https://github.com/theforeman/puppet-foreman_proxy/tree/7.2.1) (2018-05-30)

[Full Changelog](https://github.com/theforeman/puppet-foreman_proxy/compare/7.2.0...7.2.1)
Expand Down
2 changes: 1 addition & 1 deletion manifests/plugin/ansible/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
class foreman_proxy::plugin::ansible::params {
$enabled = true
$listen_on = 'https'
$ansible_dir = '/etc/ansible'
$ansible_dir = '/usr/share/foreman-proxy'
$working_dir = '/tmp'
$host_key_checking = false
}
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "theforeman-foreman_proxy",
"version": "7.2.1",
"version": "7.2.2",
"author": "theforeman",
"summary": "Foreman Smart Proxy configuration",
"license": "GPL-3.0+",
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/foreman_proxy__plugin__ansible_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
it 'should configure ansible.yml' do
should contain_file('/etc/foreman-proxy/settings.d/ansible.yml').
with_content(/:enabled: https/).
with_content(%r{:ansible_dir: /etc/ansible})
with_content(%r{:ansible_dir: /usr/share/foreman-proxy})
end

it 'should configure ansible.cfg' do
Expand Down