We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e72400 commit e165f31Copy full SHA for e165f31
2 files changed
manifests/init.pp
@@ -44,7 +44,7 @@
44
) {
45
46
# Module compatibility check
47
- $compatible = [ 'debian', 'redhat']
+ $compatible = [ 'Debian', 'RedHat']
48
if ! ($::osfamily in $compatible) {
49
fail("Module is not compatible with ${::operatingsystem}")
50
}
manifests/install.pp
@@ -21,8 +21,8 @@
21
22
23
$pythondev = $::osfamily ? {
24
- redhat => "${python}-devel",
25
- debian => "${python}-dev"
+ RedHat => "${python}-devel",
+ Debian => "${python}-dev"
26
27
28
$dev_ensure = $python::dev ? {
0 commit comments