aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/pptp.pp
blob: 8e8db9a7aab5d35face1581500ad025a8c348432 (plain)
1
2
3
4
5
6
7
8
9
class nodo::utils::network::pptp (
  $ensure = 'installed',
) {
  package { [
    'pptp-linux',
  ]:
    ensure => $ensure,
  }
}