aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: a9c71627fdf31433cf63ef935914c67af8b7c2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# == Class: avahi
#
#  This module sets up avahi on EL based systems.
#
#
#  Requirements:
#    cprice404-inifile >= 0.0.3
#
# === Parameters
#
# === Examples
#
#  class { avahi:  }
#
# === Authors
#
# Michael Stahnke <stahnma@fedoraproject.org>
#
# === Copyright
#
# Copyright 2012 Michael Stahnke


class avahi {

    $avahi_pkgs = [ 'avahi', 'avahi-tools', 'nss-mdns' ]

   package { $avahi_pkgs:
     ensure  => installed,
   }

   service { 'avahi-daemon':
     ensure    => running,
     enable    => true,
     hasstatus => true,
     require   => Service['messagebus'],
   }

   service { 'messagebus':
     ensure  => running,
     enable  => true,
     require => Package[$avahi_pkgs],
   }

  ini_setting { "avahi-${::hostname}":
    ensure  => present,
    path    => '/etc/avahi/avahi-daemon.conf',
    section => 'server',
    setting => 'host-name',
    key_val_separator => '=',
    value   => $::hostname,
    notify  => Service['avahi-daemon'],
  }

}