Skip to content

Commit 8f6c57f

Browse files
committed
fix(syslog_ng.sls): fix yamllint errors in test pillar
https://travis-ci.com/saltstack-formulas/syslog-ng-formula/builds/129135816#L210-L217: ```bash $ yamllint -s . ./test/salt/pillar/syslog_ng.sls 4:24 warning truthy value should be one of [false, true] (truthy) 6:16 warning truthy value should be one of [false, true] (truthy) 7:17 warning truthy value should be one of [false, true] (truthy) 16:7 error wrong indentation: expected 8 but found 6 (indentation) 20:7 error wrong indentation: expected 8 but found 6 (indentation) 25:7 error wrong indentation: expected 8 but found 6 (indentation) ```
1 parent 373ff11 commit 8f6c57f

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

test/salt/pillar/syslog_ng.sls

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
13
---
24
syslog_ng:
35
options:
4-
- chain_hostnames: no
6+
- chain_hostnames: false
57
- flush_lines: 0
6-
- use_dns: no
7-
- use_fqdn: no
8+
- use_dns: false
9+
- use_fqdn: false
810
- owner: root
911
- group: adm
1012
- perm: =0640
@@ -13,16 +15,16 @@ syslog_ng:
1315

1416
source:
1517
- s_src:
16-
- internal: null
18+
- internal: null
1719

1820
destination:
1921
- d_syslog:
20-
- file:
21-
- /var/log/syslog
22+
- file:
23+
- /var/log/syslog
2224

2325
filter:
2426
- f_syslog3:
25-
- =not level(debug)
27+
- =not level(debug)
2628

2729
log:
2830
-

0 commit comments

Comments
 (0)