NoSync directives #
Want to avoid syncing some entries in your configuration? You can do that by using the nosync
directive. It can be applied to individual entries or entire sections.
Example #
Base configuration #
one = "one"
# nosync
two = "two"
[section.one]
three = "three"
# nosync
[section.two]
four = "four"
Upstream #
one = "onehundred"
two = "twohundred"
[section.one]
three = "threehundred"
[section.two]
four = "fourhundred"
Result #
one = "onehundred"
# nosync
two = "two"
[section.one]
three = "threehundred"
# nosync
[section.two]
four = "four"