debian/changelog | 14 +++ migrate/system/2-to-3 | 36 ++++++++++ migrate/system/3-to-2 | 36 ++++++++++ scripts/XorpConfigParser.pm | 156 +++++++++++++++++++++++++------------------- 4 files changed, 175 insertions(+), 67 deletions(-)
New commits: commit aebebb77810a06b0f037438fc55e4e53e4db3a67 Author: Stephen Hemminger <[email protected]> Date: Tue Jan 5 18:11:52 2010 -0800 0.13.8 commit dbf91f4891706a6d67f55d5f3cfa2ab252f109b6 Author: Stephen Hemminger <[email protected]> Date: Tue Jan 5 18:10:10 2010 -0800 Add migration script to move protocols/snmp to service/snmp Migration script for config change to SNMP Bug 212 commit 66fd7f356b20e7b0e37977038de5626221ddef57 Author: Stephen Hemminger <[email protected]> Date: Tue Jan 5 18:06:10 2010 -0800 XorpConfigParser: fix more perl warnings More places where uninitialized string was being compared with '' commit 217ddacf3c3ed0db1209acad7c5ab3768b6173f9 Author: Stephen Hemminger <[email protected]> Date: Tue Jan 5 17:59:13 2010 -0800 XorpConfigParser::move_child handle empty source If there are no children (empty tree) in source node, then avoid warning. commit b0f66ada0be3038bef01c0c7e4b74e582b7823e8 Author: Stephen Hemminger <[email protected]> Date: Tue Jan 5 17:24:47 2010 -0800 Add move_child to XorpConfigParser Simple way to move things in hierarchy without damage. commit c96fedbdbd89e4f845baac1013cd3f72523d464b Author: Stephen Hemminger <[email protected]> Date: Tue Jan 5 17:22:53 2010 -0800 Fix use of uninitialized strings This is old Perl code and checks for ($name ne '') when it wants to check for string not being defined. The proper way is: if ($name) or if (defined($name)) This gets rid of lots of warnings when running/testing migration scripts. http://suva.vyatta.com/git/?p=vyatta-config-migrate.git;a=commitdiff;h=aebebb77810a06b0f037438fc55e4e53e4db3a67 http://suva.vyatta.com/git/?p=vyatta-config-migrate.git;a=commitdiff;h=dbf91f4891706a6d67f55d5f3cfa2ab252f109b6 http://suva.vyatta.com/git/?p=vyatta-config-migrate.git;a=commitdiff;h=66fd7f356b20e7b0e37977038de5626221ddef57 http://suva.vyatta.com/git/?p=vyatta-config-migrate.git;a=commitdiff;h=217ddacf3c3ed0db1209acad7c5ab3768b6173f9 http://suva.vyatta.com/git/?p=vyatta-config-migrate.git;a=commitdiff;h=b0f66ada0be3038bef01c0c7e4b74e582b7823e8 http://suva.vyatta.com/git/?p=vyatta-config-migrate.git;a=commitdiff;h=c96fedbdbd89e4f845baac1013cd3f72523d464b _______________________________________________ svn mailing list [email protected] http://mailman.vyatta.com/mailman/listinfo/svn
