Skip to content

Commit 3a640d8

Browse files
author
Ashley Penney
committed
Merge pull request #25 from ekohl/amazon
Add Amazon support
2 parents 215737f + 805edf0 commit 3a640d8

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

manifests/params.pp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,19 @@
2525
$package_name = 'xinetd'
2626
$service_name = 'xinetd'
2727
}
28+
'Linux': {
29+
case $::operatingsystem {
30+
'Amazon': {
31+
$confdir = '/etc/xinetd.d'
32+
$conffile = '/etc/xinetd.conf'
33+
$package_name = 'xinetd'
34+
$service_name = 'xinetd'
35+
}
36+
default: {
37+
fail("xinetd: module does not support Linux operatingsystem ${::operatingsystem}")
38+
}
39+
}
40+
}
2841
default: {
2942
fail("xinetd: module does not support osfamily ${::osfamily}")
3043
}

0 commit comments

Comments
 (0)