Skip to content

Commit

Permalink
fix(pillar.example): fix yamllint violations
Browse files Browse the repository at this point in the history
* 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)
```
  • Loading branch information
myii committed Oct 12, 2019
1 parent ff28364 commit b51907d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions pillar.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
zabbix:
# Overrides map.jinja
#lookup:
# lookup:
# agent:
# version: xxx
# frontend:
Expand Down Expand Up @@ -58,14 +61,16 @@ zabbix-agent:
includes:
- 'C:\program files\zabbix agent\zabbix_agentd.d\'
- 'C:\some\custom\location\'
# Pidfiles will break the windows agent so please don't add them.
# Pidfiles will break the windows agent so please don't add them.

## lookup config for windows agent ##
zabbix:
lookup:
agent:
version: '3.0.28.2400'
## Because of the way winrepo-ng works you have to have the FULL agent version
## Check the zabbix-agent in winrepo-ng for current versions, or create your own pkg file
## Check the zabbix-agent in winrepo-ng for current versions,
## or create your own pkg file

zabbix-server:
listenip: 0.0.0.0
Expand All @@ -84,8 +89,8 @@ zabbix-mysql:
dbpassword: zabbixpass
dbuser_host: '%'
# Optionally specify this for a non-local dbhost
#dbroot_user: 'root'
#dbroot_pass: 'rootpass'
# dbroot_user: 'root'
# dbroot_pass: 'rootpass'

zabbix-frontend:
dbtype: MYSQL
Expand Down

0 comments on commit b51907d

Please sign in to comment.