diff --git a/fixtures/scenario001.pp b/fixtures/scenario001.pp index 9a9f639b0..b29b881b8 100644 --- a/fixtures/scenario001.pp +++ b/fixtures/scenario001.pp @@ -22,6 +22,13 @@ if ($::os['name'] == 'Ubuntu') or ($::os['name'] == 'Fedora') or $ssl = true } +if $::osfamily == 'RedHat' { + # (amoralej) - disable selinux defaults until + # https://tickets.puppetlabs.com/browse/PUP-7559 is fixed + Concat { selinux_ignore_defaults => true } + File { selinux_ignore_defaults => true } +} + case $::osfamily { 'Debian': { $ipv6 = false diff --git a/fixtures/scenario002.pp b/fixtures/scenario002.pp index c9f33ffbb..01996542d 100644 --- a/fixtures/scenario002.pp +++ b/fixtures/scenario002.pp @@ -22,6 +22,13 @@ if ($::os['name'] == 'Ubuntu') or ($::os['name'] == 'Fedora') or $ssl = true } +if $::osfamily == 'RedHat' { + # (amoralej) - disable selinux defaults until + # https://tickets.puppetlabs.com/browse/PUP-7559 is fixed + Concat { selinux_ignore_defaults => true } + File { selinux_ignore_defaults => true } +} + case $::osfamily { 'Debian': { $ipv6 = false diff --git a/fixtures/scenario003.pp b/fixtures/scenario003.pp index b7f4a2480..50a62f7d2 100644 --- a/fixtures/scenario003.pp +++ b/fixtures/scenario003.pp @@ -22,6 +22,13 @@ if ($::os['name'] == 'Ubuntu') or ($::os['name'] == 'Fedora') or $ssl = true } +if $::osfamily == 'RedHat' { + # (amoralej) - disable selinux defaults until + # https://tickets.puppetlabs.com/browse/PUP-7559 is fixed + Concat { selinux_ignore_defaults => true } + File { selinux_ignore_defaults => true } +} + case $::osfamily { 'Debian': { $ipv6 = false diff --git a/fixtures/scenario004.pp b/fixtures/scenario004.pp index 374e6b0f3..9fd5f44f8 100644 --- a/fixtures/scenario004.pp +++ b/fixtures/scenario004.pp @@ -22,6 +22,13 @@ if ($::os['name'] == 'Ubuntu') or ($::os['name'] == 'Fedora') or $ssl = true } +if $::osfamily == 'RedHat' { + # (amoralej) - disable selinux defaults until + # https://tickets.puppetlabs.com/browse/PUP-7559 is fixed + Concat { selinux_ignore_defaults => true } + File { selinux_ignore_defaults => true } +} + if $::operatingsystem == 'Ubuntu' { $ipv6 = false # Watcher packages are not available in Ubuntu repository.