Puppet Class: rtpengine::params

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

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include rtpengine::params


7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'manifests/params.pp', line 7

class rtpengine::params {
  $repo_install               = true
  $rtpengine_dependencies     = [
    'epel-release',
    'ffmpeg',
    'rtpengine',
  ]
  $rtpengine_ctrl_socket      = '127.0.0.1:22223'
  $rtpengine_listen_interface = $facts['ipaddress']
  $rtpengine_min_port         = 30000
  $rtpengine_max_port         = 40000
  $rtpengine_max_sessions     = 16000
  $rtpengine_syslog_local     = 5
}