Puppet Class: citoid

Defined in:
puppet/modules/citoid/manifests/init.pp

Overview

Class: citoid

Citoid is a service providing citation data.

Parameters

port

the port Citoid will be running on

log_level

the lowest level to log (trace, debug, info, warn, error, fatal)

Parameters:

  • port (Any)
  • log_level (Any) (defaults to: undef)


13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'puppet/modules/citoid/manifests/init.pp', line 13

class citoid (
    $port,
    $log_level = undef,
) {

    service::node { 'citoid':
        port      => $port,
        log_level => $log_level,
        config    => {
            userAgent => undef,
            zotero    => false,
        },
    }
}