OS X also has lo0 and can't manage user homedirs

This commit is contained in:
Hunter Haugen 2014-06-23 13:45:06 -07:00
parent 3ec3a4b0fa
commit 4b7162896a
2 changed files with 7 additions and 7 deletions

View file

@ -3,18 +3,18 @@ require 'spec_helper_acceptance'
describe 'getparam function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
describe 'success' do
it 'getparam a package' do
it 'getparam a notify' do
pp = <<-EOS
user { "rspec":
ensure => present,
managehome => true,
notify { 'rspec':
ensure => present,
message => 'custom rspec message',
}
$o = getparam(User['rspec'], 'managehome')
$o = getparam(Notify['rspec'], 'message')
notice(inline_template('getparam is <%= @o.inspect %>'))
EOS
apply_manifest(pp, :catch_failures => true) do |r|
expect(r.stdout).to match(/getparam is true/)
expect(r.stdout).to match(/getparam is "custom rspec message"/)
end
end
end

View file

@ -27,7 +27,7 @@ describe 'has_interface_with function', :unless => UNSUPPORTED_PLATFORMS.include
end
it 'has_interface_with existing interface' do
pp = <<-EOS
if $osfamily == 'Solaris' {
if $osfamily == 'Solaris' or $osfamily == 'Darwin' {
$a = 'lo0'
} else {
$a = 'lo'