Fixed an issue with Amazon linux major release 4 that would make the module exit with and error message
This commit is contained in:
parent
d5d2de7719
commit
5a7e34b0ac
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ class mysql::params {
|
||||||
}
|
}
|
||||||
|
|
||||||
## Additional graceful failures
|
## Additional graceful failures
|
||||||
if $::osfamily == 'RedHat' and $::operatingsystemmajrelease == '4' {
|
if $::osfamily == 'RedHat' and $::operatingsystemmajrelease == '4' and $::operatingsystem != 'Amazon' {
|
||||||
fail("Unsupported platform: puppetlabs-${module_name} only supports RedHat 5.0 and beyond")
|
fail("Unsupported platform: puppetlabs-${module_name} only supports RedHat 5.0 and beyond")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue