mirror of
https://gitea.0xace.cc/ansible-galaxy/ddclient.git
synced 2024-11-25 00:06:42 +00:00
21 lines
368 B
Django/Jinja
21 lines
368 B
Django/Jinja
daemon=300
|
|
syslog=yes
|
|
mail-failure=root
|
|
pid=/var/run/ddclient/ddclient.pid
|
|
ssl=yes
|
|
debug=yes
|
|
verbose=yes
|
|
|
|
{% for host in ddclient_hosts %}
|
|
use=web
|
|
web=checkip.dyndns.org
|
|
protocol=nsupdate
|
|
server={{ host.dns_ip }}
|
|
login=/usr/bin/nsupdate
|
|
password={{ '/config' if ddclient_containerized else '/etc'}}/Kvps.key
|
|
zone={{ host.domain }}
|
|
ttl=60
|
|
{{ host.name }}
|
|
|
|
{% endfor %}
|