From: Kevin Quinn Date: Tue, 6 Jun 2017 18:00:58 +0000 (-0400) Subject: Fix query in howtos.md doc X-Git-Tag: rec-4.1.0-alpha1~47^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7a71c5e8de06c53afedd2a3452a03c5cacbda48;p=thirdparty%2Fpdns.git Fix query in howtos.md doc I'm not sure if this is a bug in the docs, a bug in pdns, or an old bug that was fixed. I will open an issue to reference this. --- diff --git a/docs/markdown/authoritative/howtos.md b/docs/markdown/authoritative/howtos.md index e956e846b6..eea0ad7def 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 admin.example.com 1','SOA',86400,NULL); +VALUES (1,'example.com','localhost admin.example.com 1 10380 3600 604800 3600','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)