We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 215737f + 805edf0 commit 3a640d8Copy full SHA for 3a640d8
1 file changed
manifests/params.pp
@@ -25,6 +25,19 @@
25
$package_name = 'xinetd'
26
$service_name = 'xinetd'
27
}
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
41
default: {
42
fail("xinetd: module does not support osfamily ${::osfamily}")
43
0 commit comments