aboutsummaryrefslogtreecommitdiff
path: root/manifests/classes/dhcp-server-debian.pp
blob: b1056bec65e424057a5385ed9bb140b4e1170283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*

= Class: dhcp::server::debian
Installs a dhcp server on debian system.

This class should not be included as is, please include "dhcp::server" instead.

*/
class dhcp::server::debian inherits dhcp::server::base {

  Common::Concatfilepart["00-base"] {
    content => template('dhcp/dhcpd.conf.debian.erb'),
  }

  Service["dhcpd"] {
    pattern => $lsbdistcodename ? {
      squeeze => "/usr/sbin/dhcpd",
      lenny   => "/usr/sbin/dhcpd3",
    }
  }
}