Skip to content

Commit

Permalink
Merge pull request voxpupuli#111 from bleiva/master
Browse files Browse the repository at this point in the history
Fixing operatingsystem for Amazon Linux
  • Loading branch information
jyaworski committed Sep 8, 2016
2 parents 7016566 + 7ce4a7d commit dae9bb0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@
}
}
}
'Amazon': {
$sx_fs_mount = '/selinux'
case $os_maj_release {
'4': {
$package_name = 'policycoreutils-python'
}
default: {
fail("${::operatingsystem}-${::os_maj_release} is not supported")
}
}
}
default: {
case $os_maj_release {
'7': {
Expand Down

0 comments on commit dae9bb0

Please sign in to comment.