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:
Travis Fields 2014-10-28 16:10:50 -07:00
parent 5497f83507
commit 9f68fd300f

View file

@ -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