Puppet Class: limnoria

Defined in:
manifests/init.pp

Summary

Main class, includes all other classes.

Overview

Parameters:

  • user (String)

    The unix user used to run the different bots.

  • group (String)

    The unix group used to run the different bots.

  • log_dir (Stdlib::Unixpath)

    The directory where limnoria log files should be stored.



12
13
14
15
16
17
18
19
20
# File 'manifests/init.pp', line 12

class limnoria (
  String           $user,
  String           $group,
  Stdlib::Unixpath $log_dir,
) {

include ::limnoria::install
include ::limnoria::config
}