Skip to content

Commit eb29e00

Browse files
committed
fix(pillar.example): fix yamllint error
* 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) ```
1 parent 004b1a8 commit eb29e00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pillar.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bind:
2323
lookup:
2424
key_directory: '/etc/bind/keys' # Key directory (needed to use auto-dnssec)
2525
key_algorithm: RSASHA256 # Algorithm when using auto-dnssec
26-
key_algorithm_field: 008 # See http://www.bind9.net/dns-sec-algorithm-numbers
26+
key_algorithm_field: '008' # See http://www.bind9.net/dns-sec-algorithm-numbers
2727
key_size: 4096 # Key size
2828

2929
config:

0 commit comments

Comments
 (0)