Skip to content

Commit 669e3d8

Browse files
committed
fix: linting
1 parent 3b3a66c commit 669e3d8

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

manifests/database.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
require => [
198198
Class['mysql::server'],
199199
Mysql::Db[$database_name],
200-
Mysql_user["${database_user}@${zabbix_web}"]
200+
Mysql_user["${database_user}@${zabbix_web}"],
201201
],
202202
}
203203
} # END if $zabbix_web != $zabbix_server

manifests/javagateway.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
hasrestart => true,
6565
require => [
6666
Package['zabbix-java-gateway'],
67-
File['/etc/zabbix/zabbix_java_gateway.conf']
67+
File['/etc/zabbix/zabbix_java_gateway.conf'],
6868
],
6969
}
7070

manifests/proxy.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -436,21 +436,21 @@
436436
enable => true,
437437
subscribe => [
438438
File[$proxy_configfile_path],
439-
Class['zabbix::database']
439+
Class['zabbix::database'],
440440
],
441441
require => [
442442
Package["zabbix-proxy-${db}"],
443443
File[$include_dir],
444444
File[$proxy_configfile_path],
445-
Class['zabbix::database']
445+
Class['zabbix::database'],
446446
],
447447
}
448448
}
449449

450450
$before_database = $manage_service ? {
451451
true => [
452452
Service[$proxy_service_name],
453-
Class["zabbix::database::${database_type}"]
453+
Class["zabbix::database::${database_type}"],
454454
],
455455
false => Class["zabbix::database::${database_type}"],
456456
}

manifests/web.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
comment => 'redirect all to https',
331331
rewrite_cond => ['%{SERVER_PORT} !^443$'],
332332
rewrite_rule => ["^/(.*)$ https://${zabbix_url}/\$1 [L,R]"],
333-
}
333+
},
334334
],
335335
}
336336
} else {
@@ -385,7 +385,7 @@
385385
custom_fragment => $apache_vhost_custom_fragment,
386386
rewrites => [
387387
{
388-
rewrite_rule => ['^$ /index.php [L]'] }
388+
rewrite_rule => ['^$ /index.php [L]'] },
389389
],
390390
ssl => $apache_use_ssl,
391391
ssl_cert => $apache_ssl_cert,

0 commit comments

Comments
 (0)