Puppet Class: mha::params
- Inherited by:
-
mha::manager
- Defined in:
- manifests/params.pp
Overview
mha::params
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'manifests/params.pp', line 2
class mha::params {
$mha_conf_dir = '/etc/mha'
$user = 'root'
$group = 'root'
$workdir = '/var/run/mha'
$ssh_user = 'root'
$ssh_port = 22
$ssh_connection_timeout = 5
$ssh_options = ''
$skip_reset_slave = 0
$mysql_user = 'root'
$mysql_password = ''
$port = 3306
$repl_user = ''
$repl_password = ''
$disable_log_bin = 0
$master_pid_file = ''
$log_level = 'info'
$check_repl_delay = 1
$check_repl_filter = 1
$latest_priority = 1
$multi_tier_slave = 0
$ping_interval = 3
$ping_type = 'SELECT'
$secondary_check_script = ''
$master_ip_failover_script = ''
$master_ip_online_change_script = ''
$shutdown_script = ''
$report_script = ''
$init_conf_load_script = ''
$remote_workdir = ''
$master_binlog_dir = ''
}
|