Puppet Class: network::interfaces
- Defined in:
- manifests/interfaces.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/interfaces.pp', line 1
class network::interfaces(
$interfaces={},
$mappings={},
$auto=[],
$restart=true,
) {
network::interface_file { '/etc/network/interfaces':
interfaces => $interfaces,
mappings => $mappings,
auto => $auto,
restart => $restart,
}
}
|