aboutsummaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/params.pp')
-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"
}