Skip to content

Commit c6f671c

Browse files
author
Braxton Schafer
committed
Fix failing pipelines
1 parent a386338 commit c6f671c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

manifests/agent.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@
408408
ensure => $zabbix_package_state,
409409
require => Class['zabbix::repo'],
410410
tag => 'zabbix',
411-
provider => $package_provider,
411+
provider => $zabbix_package_provider,
412412
}
413413
}
414414

manifests/params.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
$zabbix_package_provider = undef
3333
$agent_loadmodulepath = '/usr/lib/modules'
3434
}
35-
'AIX': {
35+
'AIX': {
3636
$manage_repo = false
3737
$zabbix_package_provider = 'yum'
3838
$zabbix_package_agent = 'zabbix-agent'

manifests/startup.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
file { "/etc/rc.d/init.d/${service_name}":
6161
ensure => file,
6262
mode => '0755',
63-
content => epp('zabbix/zabbix-agent-aix.init.epp', { 'pidfile' => $pidfile, 'agent_configfile_path' => $agent_configfile_path, 'zabbix_user' => $zabbix_user }),
63+
content => epp('zabbix/zabbix-agent-aix.init.epp', { 'pidfile' => $pidfile, 'agent_configfile_path' => $agent_configfile_path, 'zabbix_user' => $zabbix_user }),
6464
}
6565
file { "/etc/rc.d/rc2.d/S999${service_name}":
6666
ensure => 'link',

0 commit comments

Comments
 (0)