Puppet Class: hubot::params

Inherited by:
hubot
Defined in:
manifests/params.pp

Overview

Class: hubot::params

Default parameters for hubot. Private class

Authors

Copyright 2013 EvenUp.



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'manifests/params.pp', line 16

class hubot::params {
  $root_dir             = '/opt/hubot'
  $bot_name             = 'hubot'
  $display_name         = 'hubot'
  $build_deps           = []
  $env_export           = {}
  $scripts              = []
  $external_scripts     = []
  $log_file             = undef
  $adapter              = 'shell'
  $dependencies         = { 'hubot' => '>= 2.6.0 < 3.0.0', 'hubot-scripts' => '>= 2.5.0 < 3.0.0' }
  $git_source           = undef
  $ssh_privatekey       = undef
  $ssh_privatekey_file  = undef
  $auto_accept_host_key = true
  $service_ensure       = 'running'
  $service_enable       = true
}