Skip to content

Commit b51907d

Browse files
committed
fix(pillar.example): fix yamllint violations
* Fix errors shown below: ```bash zabbix-formula$ yamllint -s . ./pillar.example 1:1 warning missing document start "---" (document-start) 3:4 warning missing starting space in comment (comments) 61:4 warning comment not indented like content (comments-indentation) 68:89 error line too long (95 > 88 characters) (line-length) 87:4 warning missing starting space in comment (comments) 88:4 warning missing starting space in comment (comments) ```
1 parent ff28364 commit b51907d

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

pillar.example

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
---
14
zabbix:
25
# Overrides map.jinja
3-
#lookup:
6+
# lookup:
47
# agent:
58
# version: xxx
69
# frontend:
@@ -58,14 +61,16 @@ zabbix-agent:
5861
includes:
5962
- 'C:\program files\zabbix agent\zabbix_agentd.d\'
6063
- 'C:\some\custom\location\'
61-
# Pidfiles will break the windows agent so please don't add them.
64+
# Pidfiles will break the windows agent so please don't add them.
65+
6266
## lookup config for windows agent ##
6367
zabbix:
6468
lookup:
6569
agent:
6670
version: '3.0.28.2400'
6771
## Because of the way winrepo-ng works you have to have the FULL agent version
68-
## Check the zabbix-agent in winrepo-ng for current versions, or create your own pkg file
72+
## Check the zabbix-agent in winrepo-ng for current versions,
73+
## or create your own pkg file
6974

7075
zabbix-server:
7176
listenip: 0.0.0.0
@@ -84,8 +89,8 @@ zabbix-mysql:
8489
dbpassword: zabbixpass
8590
dbuser_host: '%'
8691
# Optionally specify this for a non-local dbhost
87-
#dbroot_user: 'root'
88-
#dbroot_pass: 'rootpass'
92+
# dbroot_user: 'root'
93+
# dbroot_pass: 'rootpass'
8994

9095
zabbix-frontend:
9196
dbtype: MYSQL

0 commit comments

Comments
 (0)