Skip to content

Commit

Permalink
fix(pillar.example): fix yamllint error
Browse files Browse the repository at this point in the history
* https://travis-ci.org/myii/bind-formula/builds/594704904#L211-L213

```bash
$ yamllint -s .
./pillar.example
  26:29     error    forbidden implicit octal value "008"  (octal-values)
```
  • Loading branch information
myii committed Oct 7, 2019
1 parent 004b1a8 commit eb29e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pillar.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bind:
lookup:
key_directory: '/etc/bind/keys' # Key directory (needed to use auto-dnssec)
key_algorithm: RSASHA256 # Algorithm when using auto-dnssec
key_algorithm_field: 008 # See http://www.bind9.net/dns-sec-algorithm-numbers
key_algorithm_field: '008' # See http://www.bind9.net/dns-sec-algorithm-numbers
key_size: 4096 # Key size

config:
Expand Down

0 comments on commit eb29e00

Please sign in to comment.