Puppet Class: odoo::service

Defined in:
manifests/service.pp

Summary

Manage odoo service

Overview



4
5
6
7
8
9
10
11
# File 'manifests/service.pp', line 4

class odoo::service {
  assert_private()

  service { 'odoo':
    ensure => running,
    enable => true,
  }
}