Fix lint issue

This commit is contained in:
Sylvain Baubeau 2014-03-11 11:35:15 +01:00
parent bfa9ca8db7
commit 94ca55bdca
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ This node is under the control of Puppet ${::puppetversion}.
if $::osfamily == 'RedHat' and $rhn_registration { if $::osfamily == 'RedHat' and $rhn_registration {
create_resources('rhn_register', { create_resources('rhn_register', {
"${::hostname}" => $rhn_registration "rhn-${::hostname}" => $rhn_registration
} ) } )
} }
} }

View File

@ -87,7 +87,7 @@ describe 'cloud' do
# it_configures 'private cloud node' # it_configures 'private cloud node'
it { should contain_rhn_register('redhat1') } it { should contain_rhn_register('rhn-redhat1') }
end end
context 'on other platforms' do context 'on other platforms' do