diff options
Diffstat (limited to 'manifests/params.pp')
-rw-r--r-- | manifests/params.pp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/manifests/params.pp b/manifests/params.pp new file mode 100644 index 0000000..61a1753 --- /dev/null +++ b/manifests/params.pp @@ -0,0 +1,18 @@ +class avahi::params { + + if $::osfamily == 'RedHat' { + $avahi_main = 'avahi' + $avahi_daemon = 'avahi-daemon' + $avahi_tools = 'avahi-tools' + $avahi_mdns = 'nss-mdns' + $avahi_dbus = 'messagebus' + } + elsif $::osfamily == 'Debian' { + $avahi_main = 'avahi' + $avahi_daemon = 'avahi-daemon' + $avahi_tools = 'avahi-tools' + $avahi_mdns = 'nss-mdns' + $avahi_dbus = 'dbus' + } + +} |