aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Jannusch <chad.jannusch@mbx.com>2015-06-17 16:09:02 -0500
committerChad Jannusch <chad.jannusch@mbx.com>2015-06-17 16:09:02 -0500
commit59799a6368c34b73aefa96cf8f13039a0f914665 (patch)
treee795e02cf9e1dfc38241df3933ef8c48d43c3efc
parentf3a26ddb6722fb30cab4c3273590785c15b95b3d (diff)
downloadpuppet-dhcp-59799a6368c34b73aefa96cf8f13039a0f914665.tar.gz
puppet-dhcp-59799a6368c34b73aefa96cf8f13039a0f914665.tar.bz2
Add trusty as an OS option
-rw-r--r--manifests/params.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index fc45987..675c779 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -10,17 +10,17 @@ class dhcp::params {
/Debian|Ubuntu/: {
$config_dir = $::lsbdistcodename? {
/lenny|lucid/ => '/etc/dhcp3',
- /squeeze|wheezy|precise/ => '/etc/dhcp',
+ /squeeze|wheezy|precise|trusty/ => '/etc/dhcp',
}
$srv_dhcpd = $::lsbdistcodename? {
/lenny|lucid/ => 'dhcp3-server',
- /squeeze|wheezy|precise/ => 'isc-dhcp-server',
+ /squeeze|wheezy|precise|trusty/ => 'isc-dhcp-server',
}
$service_pattern = $::lsbdistcodename? {
/lenny|lucid/ => '/usr/sbin/dhcpd3',
- /squeeze|wheezy|precise/ => '/usr/sbin/dhcpd',
+ /squeeze|wheezy|precise|trusty/ => '/usr/sbin/dhcpd',
}
$server_template = "${module_name}/dhcpd.conf.debian.erb"