You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have to manually add new lines to our torrc template everytime a new torrc directive gets added upstream, we should dynamically support new directives, see the pdns role for how this is done:
NOTE: this change is NOT backwards compatible
operator action is required when upgrading to a version that includes
this change
implements #192
previously every torrc option required explicit support in our torrc
template with this change we support arbitrary torrc options
and no changes are required when new torrc options are available
they can be set using the variable `tor_config` which takes a dictionary
with the key being the torrc option and the value the actual setting
example:
```
tor_config:
SigningKeyLifetime: 90 days
```
some torrc options are not supported in tor_config because we
automatically set them - see the README
Currently we have to manually add new lines to our torrc template everytime a new torrc directive gets added upstream, we should dynamically support new directives, see the pdns role for how this is done:
https://github.com/PowerDNS/pdns-ansible/blob/a0b6057876b6bea698659eff21859b7024a2a4bf/defaults/main.yml#L82
https://github.com/PowerDNS/pdns-ansible/blob/master/templates/pdns.conf.j2#L4
note: we must exclude some options from this (for example those that support per instance config)
The text was updated successfully, but these errors were encountered: