The Network People Support Forums

Other TNPI Software => NicTool => Topic started by: matt on November 22, 2011, 01:07:57 AM

Title: NicTool 2.10 release
Post by: matt on November 22, 2011, 01:07:57 AM
The changes are numerous and extensive. See the change log for details.

http://www.nictool.com/download/NicToolServer.shtml (http://www.nictool.com/download/NicToolServer.shtml)
Title: Re: NicTool 2.10 release
Post by: matt on December 12, 2011, 09:22:29 PM
New Features


Improved Features:

Other Changes:


Title: Re: NicTool 2.10 release
Post by: matt on December 12, 2011, 09:32:45 PM
A bug has been discovered in NicTool 2.10 and 2.11.  When zones are exported, the zone records from deleted zones are also exported. The fix is here:

https://github.com/msimerson/NicTool/commit/502463d8fada8d8c8da24ecec3a0a8cb0d89a9fc


diff --git a/server/lib/NicToolServer/Export.pm b/server/lib/NicToolServer/Export.pm
index e15a835..fe535a2 100644
--- a/server/lib/NicToolServer/Export.pm
+++ b/server/lib/NicToolServer/Export.pm
@@ -408,14 +408,13 @@ sub get_ns_records {
       FROM nt_zone_record r
         LEFT JOIN resource_record_type t ON t.id=r.type_id
         LEFT JOIN nt_zone_nameserver ns ON ns.nt_zone_id=r.nt_zone_id
-        JOIN nt_zone z ON ns.nt_zone_id=z.nt_zone_id";
+        JOIN nt_zone z ON ns.nt_zone_id=z.nt_zone_id
+      WHERE z.deleted=0
+        AND r.deleted=0";

     my @args;
-    if ( $self->{ns_id} == 0 ) {
-        $sql .= " WHERE r.deleted=0";  # all zone recs
-    }
-    else {
-        $sql .= " WHERE ns.nt_nameserver_id=? AND r.deleted=0";
+    if ( $self->{ns_id} != 0 ) {
+        $sql .= " AND ns.nt_nameserver_id=?";
         push @args, $self->{ns_id};
     }