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