aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSimon Séhier <simon.sehier@camptocamp.com>2015-08-13 11:35:28 +0200
committerSimon Séhier <simon.sehier@camptocamp.com>2015-08-13 11:39:18 +0200
commit62633f117aed4c062664d7bac5042936667286ba (patch)
tree61e2e4d55fb71c47edc074e02158f8e904d7cd69 /manifests
parentb3771c83f8b420f108fea8b018738270b66be8e2 (diff)
downloadpuppet-dhcp-62633f117aed4c062664d7bac5042936667286ba.tar.gz
puppet-dhcp-62633f117aed4c062664d7bac5042936667286ba.tar.bz2
remove lenny & lucid support
Diffstat (limited to 'manifests')
-rw-r--r--manifests/params.pp31
1 files changed, 4 insertions, 27 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 675c779..1270a53 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -4,31 +4,8 @@
# Set variables for names and paths
#
class dhcp::params {
-
- case $::operatingsystem {
-
- /Debian|Ubuntu/: {
- $config_dir = $::lsbdistcodename? {
- /lenny|lucid/ => '/etc/dhcp3',
- /squeeze|wheezy|precise|trusty/ => '/etc/dhcp',
- }
-
- $srv_dhcpd = $::lsbdistcodename? {
- /lenny|lucid/ => 'dhcp3-server',
- /squeeze|wheezy|precise|trusty/ => 'isc-dhcp-server',
- }
-
- $service_pattern = $::lsbdistcodename? {
- /lenny|lucid/ => '/usr/sbin/dhcpd3',
- /squeeze|wheezy|precise|trusty/ => '/usr/sbin/dhcpd',
- }
-
- $server_template = "${module_name}/dhcpd.conf.debian.erb"
- }
-
- default: {
- fail "Unsupported OS ${::operatingsystem}/${::lsbdistcodename}"
- }
-
- }
+ $config_dir = '/etc/dhcp'
+ $srv_dhcpd = 'isc-dhcp-server'
+ $service_pattern = '/usr/sbin/dhcpd'
+ $server_template = "${module_name}/dhcpd.conf.debian.erb"
}