aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/pppoe.pp
blob: a9a62f4198d2878df416c610d94496976aa6827c (plain)
1
2
3
4
5
6
7
8
9
10
11
class nodo::utils::network::pppoe (
  $ensure = 'installed',
) {
  package { [
    'ppp',
    'pppoe',
    'pppoeconf',
  ]:
    ensure => $ensure,
  }
}