diff options
author | Rick Balocca <rbalocca@vyatta.com> | 2008-08-03 14:25:43 -0700 |
---|---|---|
committer | Rick Balocca <rbalocca@vyatta.com> | 2008-08-03 14:25:43 -0700 |
commit | 948bdcbcf4d7c04944bc4212204e97309b5fe499 (patch) | |
tree | 136b7cef869c1b129a010afebb2ce83940cfc4b9 /scripts/vyatta-interfaces.pl | |
parent | 5cfca8801a52bf8e9421417f82a4cee6cfe8653e (diff) | |
parent | 2d83fb22c6921b73d2fa2c0585706887b23cc21f (diff) | |
download | vyatta-cfg-948bdcbcf4d7c04944bc4212204e97309b5fe499.tar.gz vyatta-cfg-948bdcbcf4d7c04944bc4212204e97309b5fe499.zip |
Merge branch 'hollywood'
Diffstat (limited to 'scripts/vyatta-interfaces.pl')
-rw-r--r-- | scripts/vyatta-interfaces.pl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/vyatta-interfaces.pl b/scripts/vyatta-interfaces.pl index 18fbf61..3794769 100644 --- a/scripts/vyatta-interfaces.pl +++ b/scripts/vyatta-interfaces.pl @@ -312,7 +312,7 @@ sub delete_eth_addrs { if ($addr eq "dhcp") { stop_dhclient($intf); - system("rm -f /var/lib/dhcp3/dhclient_$intf\_lease; rm -f /var/lib/dhcp3/$intf\; rm -f /var/lib/dhcp3/release_$intf\;"); + system("rm -f /var/lib/dhcp3/dhclient_$intf\_lease; rm -f /var/lib/dhcp3/$intf\; rm -f /var/run/vyatta/dhclient/dhclient_release_$intf\;"); exit 0; } my $version = is_ip_v4_or_v6($addr); @@ -457,7 +457,8 @@ sub op_dhcp_command { exit 1; } - my $release_file = $dhclient_dir . 'release_' . $intf; + my $tmp_dhclient_dir = '/var/run/vyatta/dhclient/'; + my $release_file = $tmp_dhclient_dir . 'dhclient_release_' . $intf; if ($op_command eq "dhcp-release") { if (-e $release_file) { print "IP address for $intf has already been released.\n"; @@ -465,6 +466,9 @@ sub op_dhcp_command { } else { print "Releasing DHCP lease on $intf ...\n"; stop_dhclient($intf); + if(! -d $tmp_dhclient_dir ){ + system ("mkdir $tmp_dhclient_dir\;"); + } system ("touch $release_file\;"); exit 0; } |