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

# -*- coding: utf-8 -*-
# vim: ft=yaml
--- ---
syslog_ng: syslog_ng:
options: options:
- chain_hostnames: no
- chain_hostnames: false
- flush_lines: 0 - flush_lines: 0
- use_dns: no
- use_fqdn: no
- use_dns: false
- use_fqdn: false
- owner: root - owner: root
- group: adm - group: adm
- perm: =0640 - perm: =0640


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


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


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


log: log:
- -

Loading…
Cancel
Save