aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorCédric Jeanneret <cedric.jeanneret@camptocamp.com>2013-06-06 06:20:23 +0000
committerCédric Jeanneret <cedric.jeanneret@camptocamp.com>2013-06-12 11:06:39 +0000
commit5e77ac1bcd5f1a68c82825cda7a6f183a4851da3 (patch)
tree33aa53ea9b5c31b51d6ab9993bf41d64c80a9cac /manifests
parent93895f1f039956ec9d02df511aaeaed885ae34bf (diff)
downloadpuppet-dhcp-5e77ac1bcd5f1a68c82825cda7a6f183a4851da3.tar.gz
puppet-dhcp-5e77ac1bcd5f1a68c82825cda7a6f183a4851da3.tar.bz2
added wheezy support
Diffstat (limited to 'manifests')
-rw-r--r--manifests/params.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 0938e4a..2d10134 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -9,18 +9,18 @@ class dhcp::params {
Debian: {
$config_dir = $::lsbdistcodename? {
- lenny => '/etc/dhcp3',
- squeeze => '/etc/dhcp',
+ lenny => '/etc/dhcp3',
+ /squeeze|wheezy/ => '/etc/dhcp',
}
$srv_dhcpd = $::lsbdistcodename? {
- lenny => 'dhcp3-server',
- squeeze => 'isc-dhcp-server',
+ lenny => 'dhcp3-server',
+ /squeeze|wheezy/ => 'isc-dhcp-server',
}
$service_pattern = $::lsbdistcodename? {
- lenny => '/usr/sbin/dhcpd3',
- squeeze => '/usr/sbin/dhcpd',
+ lenny => '/usr/sbin/dhcpd3',
+ /squeeze|wheezy/ => '/usr/sbin/dhcpd',
}
$server_template = "${module_name}/dhcpd.conf.debian.erb"