
This is the initial commit for puppet-watcher. It has been automatically generated using cookiecutter[1] and msync[2] [1] https://github.com/openstack/puppet-openstack-cookiecutter [2] https://github.com/openstack/puppet-modulesync-configs Change-Id: I72a2df77b202c994b24887062544918903f3631b
16 lines
237 B
Puppet
16 lines
237 B
Puppet
# Parameters for puppet-watcher
|
|
#
|
|
class watcher::params {
|
|
|
|
case $::osfamily {
|
|
'RedHat': {
|
|
}
|
|
'Debian': {
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily: ${::osfamily} operatingsystem")
|
|
}
|
|
|
|
} # Case $::osfamily
|
|
}
|