From e29cbb8be4347a471edae244aef6c26faada38bc Mon Sep 17 00:00:00 2001 From: Nan Liu Date: Wed, 11 Jul 2012 16:41:17 -0700 Subject: Update redhat tftp file owner. This update address file owner to nobody by default for RHEL family. --- spec/defines/tftp_file_spec.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'spec/defines/tftp_file_spec.rb') diff --git a/spec/defines/tftp_file_spec.rb b/spec/defines/tftp_file_spec.rb index e24f0f3..38f34a6 100644 --- a/spec/defines/tftp_file_spec.rb +++ b/spec/defines/tftp_file_spec.rb @@ -38,6 +38,23 @@ describe 'tftp::file' do } end + describe 'when deploying on redhat' do + let(:facts) { { :operatingsystem => 'RedHat', + :osfamily => 'redhat', + :path => '/usr/local/bin:/usr/bin:/bin', } } + + it { + should include_class('tftp') + should contain_file('/var/lib/tftpboot/sample').with({ + 'ensure' => 'file', + 'owner' => 'nobody', + 'group' => 'nobody', + 'mode' => '0644', + 'recurse' => false, + }) + } + end + describe 'when deploying with parameters' do let(:params) { {:ensure => 'directory', :owner => 'root', -- cgit v1.2.3