aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: cbd21aa8115dd06b8b3516128b648c94dc6b237c (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
56
57
58
59
60
61
62
63
64
65
66
# == Class: avahi
#
#  This module sets up avahi on EL/Debian based systems.
#
#  Tested on EL6 and Wheezy
#
#  Requirements:
#    cprice404-inifile >= 0.0.3
#
# === Examples
#
#  class { avahi:  }
#
# === Authors
#
# Michael Stahnke <stahnma@fedoraproject.org>
#
# === Copyright
#
# Copyright 2012 Michael Stahnke


class avahi inherits avahi::params {

   if $::kernel == 'Linux' {

     package { $avahi_main:
       ensure  => installed,
     }

     package { $avahi_tools:
       ensure  => installed,
       require => Package[$avahi_main]
     }

     package { $avahi_mdns:
       ensure  => installed,
       require => Package[$avahi_main]
     }

     service { $avahi_daemon:
       ensure    => running,
       enable    => true,
       hasstatus => true,
       require   => Service['avahi_dbus'],
     }

     service { 'avahi_dbus':
       name    => $avahi_dbus,
       ensure  => running,
       enable  => true,
       require => Package[$avahi_mdns],
     }

    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],
      require => Package[$avahi_mdns],
    }
  }
}