Browse Source

Correct split_catchall doc

pull/1044/head
Ross McFarland 2 years ago
parent
commit
77b1d7a1ba
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 6 additions and 5 deletions
  1. +6
    -5
      octodns/provider/yaml.py

+ 6
- 5
octodns/provider/yaml.py View File

@ -49,11 +49,12 @@ class YamlProvider(BaseProvider):
# When writing YAML records out to disk with split_extension enabled
# each record is written out into its own file with .yaml appended to
# the name of the record. This would result in files like `.yaml` for
# the apex and `*.yaml` for a wildcard. If your OS doesn't allow such
# filenames or you would prefer to avoid them you can enable
# split_catchall to instead write those records into a file named
# `$[zone.name].yaml`
# the name of the record. The two exceptions are for the root and
# wildcard nodes. These records are written into a file named
# `$[zone.name].yaml`. If you would prefer this catchall file not be
# used `split_catchall` can be set to False to instead write those
# records out to `.yaml` and `*.yaml` respectively. Note that some
# operating systems may not allow files with those names.
# (optional, default True)
split_catchall: true


Loading…
Cancel
Save