summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog16
-rwxr-xr-xscripts/vyatta-interfaces.pl2
2 files changed, 17 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index bb493b8..14695a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+vyatta-cfg (0.14.70) unstable; urgency=low
+
+ * fix broken call to getIP
+
+ -- Mohit Mehta <mohit.mehta@vyatta.com> Mon, 27 Apr 2009 14:24:11 -0700
+
+vyatta-cfg (0.14.69) unstable; urgency=low
+
+ * Use getIP rather than call 'ip addr'
+ * Use undef for false
+ * Add method to show configured mtu
+ * Handle errors better in show_mtu
+ * vyatta-interfaces changes for DHCP
+
+ -- Stephen Hemminger <stephen.hemminger@vyatta.com> Mon, 27 Apr 2009 10:19:03 -0700
+
vyatta-cfg (0.14.68) unstable; urgency=low
[ Stephen Hemminger ]
diff --git a/scripts/vyatta-interfaces.pl b/scripts/vyatta-interfaces.pl
index d1a0e55..757e29f 100755
--- a/scripts/vyatta-interfaces.pl
+++ b/scripts/vyatta-interfaces.pl
@@ -90,7 +90,7 @@ exit 0;
sub is_ip_configured {
my ($intf, $ip) = @_;
- my @found = grep $ip, getIP($intf);
+ my @found = grep $ip, Vyatta::Misc::getIP($intf);
return ($#found > 0);
}