Skip to content

Commit 778f2d3

Browse files
author
Henri Nougayrede
committed
fix lint
1 parent 877981e commit 778f2d3

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

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: 3 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,8 @@
385385
custom_fragment => $apache_vhost_custom_fragment,
386386
rewrites => [
387387
{
388-
rewrite_rule => ['^$ /index.php [L]'] }
388+
rewrite_rule => ['^$ /index.php [L]'],
389+
},
389390
],
390391
ssl => $apache_use_ssl,
391392
ssl_cert => $apache_ssl_cert,

0 commit comments

Comments
 (0)