summaryrefslogtreecommitdiffstats
path: root/modules/nginx/manifests/service.pp
blob: fab1c85fa17ab016da2da1e1a504965bb04c57d4 (plain) (blame)
1
2
3
4
5
6
class nginx::service {
  service { 'nginx':
    ensure => running,
    enabled => true;
  }
}