Browse Source

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)
```
tags/v0.4.0
Imran Iqbal 5 years ago
parent
commit
8f6c57f0f9
No account linked to committer's email address
1 changed files with 9 additions and 7 deletions
  1. +9
    -7
      test/salt/pillar/syslog_ng.sls

+ 9
- 7
test/salt/pillar/syslog_ng.sls View File

@@ -1,10 +1,12 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
syslog_ng:
options:
- chain_hostnames: no
- chain_hostnames: false
- flush_lines: 0
- use_dns: no
- use_fqdn: no
- use_dns: false
- use_fqdn: false
- owner: root
- group: adm
- perm: =0640
@@ -13,16 +15,16 @@ syslog_ng:

source:
- s_src:
- internal: null
- internal: null

destination:
- d_syslog:
- file:
- /var/log/syslog
- file:
- /var/log/syslog

filter:
- f_syslog3:
- =not level(debug)
- =not level(debug)

log:
-

Loading…
Cancel
Save