Fixed a mistake where we were trying to touch a host file using the default which was not relavent to the host we were modifying
This commit is contained in:
parent
5497f83507
commit
9f68fd300f
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ unless ENV['RS_PROVISION'] == 'no' or ENV['BEAKER_provision'] == 'no'
|
|||
|
||||
hosts.each do |host|
|
||||
on host, "mkdir -p #{host['distmoduledir']}"
|
||||
on host, "/bin/touch #{default['puppetpath']}/hiera.yaml"
|
||||
on host, "/bin/touch #{host['puppetpath']}/hiera.yaml"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue