diff options
author | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-05-13 00:55:33 -0500 |
---|---|---|
committer | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-06-04 00:34:38 -0500 |
commit | f4ea61dd5bf0ef2baa7d545b12e168b652412509 (patch) | |
tree | e20e0a4e7a15051f4bd5b86d0ef2e4029b56c491 /src | |
parent | 79040279b0400cd819c165e5ed38c24bf3c387e3 (diff) | |
download | vyos-1x-f4ea61dd5bf0ef2baa7d545b12e168b652412509.tar.gz vyos-1x-f4ea61dd5bf0ef2baa7d545b12e168b652412509.zip |
dns: T5144: Relocate ddclient template path for consistency with config path
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/dns_dynamic.py (renamed from src/conf_mode/dynamic_dns.py) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/dynamic_dns.py b/src/conf_mode/dns_dynamic.py index fe72a3180..e4e2cf30e 100755 --- a/src/conf_mode/dynamic_dns.py +++ b/src/conf_mode/dns_dynamic.py @@ -107,7 +107,7 @@ def generate(dyndns): if not dyndns: return None - render(config_file, 'dynamic-dns/ddclient.conf.j2', dyndns) + render(config_file, 'dns-dynamic/ddclient.conf.j2', dyndns) return None def apply(dyndns): |