Skip to content

Commit

Permalink
Fixing operatingsystem for Amazon Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
bleivaedrans committed Aug 9, 2016
1 parent fa54aa7 commit 7ce4a7d
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 @@ -37,6 +37,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 7ce4a7d

Please sign in to comment.