Puppet Class: phantomjs::service

Defined in:
manifests/service.pp

Overview

Class phantomjs::service

This class is meant to be called from module. It ensure the service is running.



6
7
8
9
10
11
12
13
14
# File 'manifests/service.pp', line 6

class phantomjs::service {

  service { $::phantomjs::service_name:
    ensure     => running,
    enable     => true,
    hasstatus  => true,
    hasrestart => true,
  }
}