From: bert hubert Date: Tue, 20 Dec 2016 10:40:33 +0000 (+0100) Subject: fix SOA record in HOWTO X-Git-Tag: dnsdist-1.1.0~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58b6f3faf8dd2bc1a95b22d6398a09ed7a4b9bc6;p=thirdparty%2Fpdns.git fix SOA record in HOWTO --- diff --git a/docs/markdown/authoritative/howtos.md b/docs/markdown/authoritative/howtos.md index 9dd164594d..8ab3cb8075 100644 --- a/docs/markdown/authoritative/howtos.md +++ b/docs/markdown/authoritative/howtos.md @@ -73,7 +73,7 @@ Now we need to add some records to our database (in a separate shell): # mysql pdnstest mysql> INSERT INTO domains (name, type) values ('example.com', 'NATIVE'); INSERT INTO records (domain_id, name, content, type,ttl,prio) -VALUES (1,'example.com','localhost ahu@ds9a.nl 1','SOA',86400,NULL); +VALUES (1,'example.com','localhost admin.example.com 1','SOA',86400,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'example.com','dns-us1.powerdns.net','NS',86400,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio)