]> granicus.if.org Git - pdns/commitdiff
some better reporting in create-slave-zone
authorbert hubert <bert.hubert@netherlabs.nl>
Fri, 29 Jan 2016 21:44:30 +0000 (22:44 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Fri, 29 Jan 2016 21:44:30 +0000 (22:44 +0100)
pdns/pdnsutil.cc

index dba97071f5d246810eba0fdb95d5051596e2e9bb..761e6cbb6435a34b13be8ec3b136e22669fa48d8 100644 (file)
@@ -1165,14 +1165,15 @@ int createSlaveZone(const vector<string>& cmds) {
     cerr<<"Domain '"<<zone.toString()<<"' exists already"<<endl;
     return 1;
   }
-  cerr<<"Creating empty zone '"<<zone.toString()<<"'"<<endl;
+  ComboAddress master(cmds[2], 53);
+  cerr<<"Creating slave zone '"<<zone.toString()<<"', master is "<<master.toStringWithPort()<<endl;
   B.createDomain(zone);
   if(!B.getDomainInfo(zone, di)) {
     cerr<<"Domain '"<<zone.toString()<<"' was not created!"<<endl;
     return 1;
   }
   di.backend->setKind(zone, DomainInfo::Slave);
-  di.backend->setMaster(zone, cmds[2]);
+  di.backend->setMaster(zone, master.toStringWithPort());
   return EXIT_SUCCESS;
 }