diff options
author | Marius Halden <marius.h@lden.org> | 2014-03-17 23:31:21 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2014-03-17 23:31:21 +0100 |
commit | 16fe98b9a7d580e818346a8850e4755a65dc478c (patch) | |
tree | 6c8bf96d38bf4111f7b526e2fbe49342265a7eef /ddns.cfg | |
parent | 2c8a22216ef9c6cb9c6e6741f9c54acfd3262a72 (diff) | |
download | DDNS.py-16fe98b9a7d580e818346a8850e4755a65dc478c.tar.gz DDNS.py-16fe98b9a7d580e818346a8850e4755a65dc478c.tar.bz2 DDNS.py-16fe98b9a7d580e818346a8850e4755a65dc478c.tar.xz |
Adjusted config format
Diffstat (limited to 'ddns.cfg')
-rw-r--r-- | ddns.cfg | 17 |
1 files changed, 7 insertions, 10 deletions
@@ -1,30 +1,27 @@ # vim: ai ts=2 sts=2 sw=2 et users: - - &user-admin - username: admin + - username: admin password: password hash: None - - &user-user1 - username: user1 + - username: user1 password: password hash: None dnskeys: - - &dnskey-test-key - name: test-key + - name: test-key key: key algorithm: HMAC-MD5 zones: - name: test.example.org. ns: ns.example.org - key: *dnskey-test-key + key: test-key domains: - domain: host1 # host1.test.example.org users: - - *user-admin + - admin - domain: host2 # host2.test.example.org users: - - *user-admin - - *user-user1 + - admin + - user1 |