diff options
author | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-06-02 15:19:39 +0200 |
---|---|---|
committer | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-06-02 15:19:39 +0200 |
commit | 8b74c455efe54c681fe9a18ba30915b284dd58ff (patch) | |
tree | dff7ec7b07e95078875bbb2f3d4d380f7aa3afdb | |
parent | f868a99e76b58243a0fd6321841cca4ad3091dba (diff) |
ensure the enterhooks directory is present
-rw-r--r-- | puppet/modules/site_config/manifests/dhclient.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/dhclient.pp b/puppet/modules/site_config/manifests/dhclient.pp index dbe2ef1c..7755413b 100644 --- a/puppet/modules/site_config/manifests/dhclient.pp +++ b/puppet/modules/site_config/manifests/dhclient.pp @@ -22,11 +22,19 @@ class site_config::dhclient { require => File['/usr/local/sbin/reload_dhclient'], } + file { '/etc/dhcp/dhclient-enter-hooks.d': + ensure => directory, + mode => '0755', + owner => 'root', + group => 'root', + } + file { '/etc/dhcp/dhclient-enter-hooks.d/disable_resolvconf': content => 'make_resolv_conf() { : ; } ; set_hostname() { : ; }', mode => '0644', owner => 'root', group => 'root', + require => File['/etc/dhcp/dhclient-enter-hooks.d'], notify => Exec['reload_dhclient']; } } |