Puppet Class: charybdis::log

Defined in:
manifests/log.pp

Overview

Parameters:

  • userlog (Any) (defaults to: '/var/log/charybdis/userlog')
  • fuserlog (Any) (defaults to: '/var/log/charybdis/fuserlog')
  • operlog (Any) (defaults to: '/var/log/charybdis/operlog')
  • foperlog (Any) (defaults to: '/var/log/charybdis/foperlog')
  • serverlog (Any) (defaults to: '/var/log/charybdis/serverlog')
  • klinelog (Any) (defaults to: '/var/log/charybdis/klinelog')
  • killlog (Any) (defaults to: '/var/log/charybdis/killlog')
  • operspylog (Any) (defaults to: '/var/log/charybdis/operspylog')
  • ioerrorlog (Any) (defaults to: '/var/log/charybdis/ioerror')
  • conffile (Any) (defaults to: $charybdis::conffile)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/log.pp', line 1

class charybdis::log (
  $userlog    = '/var/log/charybdis/userlog',
  $fuserlog   = '/var/log/charybdis/fuserlog',
  $operlog    = '/var/log/charybdis/operlog',
  $foperlog   = '/var/log/charybdis/foperlog',
  $serverlog  = '/var/log/charybdis/serverlog',
  $klinelog   = '/var/log/charybdis/klinelog',
  $killlog    = '/var/log/charybdis/killlog',
  $operspylog = '/var/log/charybdis/operspylog',
  $ioerrorlog = '/var/log/charybdis/ioerror',
  $conffile   = $charybdis::conffile
) {
  concat::fragment { 'log conf':
    target  => $conffile,
    content => template('charybdis/log.erb'),
    order   => '005',
  }
}