diff options
author | Chad Jannusch <chad.jannusch@mbx.com> | 2015-06-17 16:09:02 -0500 |
---|---|---|
committer | Chad Jannusch <chad.jannusch@mbx.com> | 2015-06-17 16:09:02 -0500 |
commit | 59799a6368c34b73aefa96cf8f13039a0f914665 (patch) | |
tree | e795e02cf9e1dfc38241df3933ef8c48d43c3efc /manifests | |
parent | f3a26ddb6722fb30cab4c3273590785c15b95b3d (diff) | |
download | puppet-dhcp-59799a6368c34b73aefa96cf8f13039a0f914665.tar.gz puppet-dhcp-59799a6368c34b73aefa96cf8f13039a0f914665.tar.bz2 |
Add trusty as an OS option
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/params.pp | 6 |
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" |