Puppet Class: conf::network::config::dhcpcd

Inherited by:
conf::network::config::no_dhcpcd
Defined in:
manifests/network/config/dhcpcd.pp

Overview



1
2
3
4
5
6
7
8
9
10
# File 'manifests/network/config/dhcpcd.pp', line 1

class conf::network::config::dhcpcd {

  file { "/etc/dhcpcd.conf":
    mode  => 444,
    owner => root,
    group => netdev,
  }
  Package["dhcpcd5"] -> File["/etc/dhcpcd.conf"]

}