diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-08-12 15:45:39 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-08-12 15:45:39 -0700 |
commit | 73df0b13144b701c505c60a63dd7757db40ec834 (patch) | |
tree | cd6b8585767a4abb59c75d8684f3a01abf05d2de /scripts/vyatta-show-dhclient.pl | |
parent | b5ae403ac6e34b887731cbee23979f4fc141b69e (diff) | |
parent | 7d0eb3566db26114a0b57af6491cb7b6844ccea8 (diff) | |
download | vyatta-op-hollywood.tar.gz vyatta-op-hollywood.zip |
Merge branch 'hollywood' of suva.vyatta.com:/git/vyatta-op into hollywoodvyatta/3.1.4hollywood
Diffstat (limited to 'scripts/vyatta-show-dhclient.pl')
-rwxr-xr-x | scripts/vyatta-show-dhclient.pl | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/scripts/vyatta-show-dhclient.pl b/scripts/vyatta-show-dhclient.pl index b696f8f..0f3990b 100755 --- a/scripts/vyatta-show-dhclient.pl +++ b/scripts/vyatta-show-dhclient.pl @@ -122,7 +122,27 @@ sub dhclient_show_lease { } } print "subnet mask: $new_subnet_mask\n" if defined $new_subnet_mask; - print "domain name: $new_domain_name\n" if defined $new_domain_name; + if (defined $new_domain_name) { + print "domain name: $new_domain_name"; + my $cli_domain_overrides = 0; + my $if_domain_exists = `grep domain /etc/resolv.conf 2> /dev/null | wc -l`; + if ($if_domain_exists > 0) { + my @domain = `grep domain /etc/resolv.conf`; + for my $each_domain_text_found (@domain) { + my @domain_text_split = split(/\t/, $each_domain_text_found, 2); + my $domain_at_start_of_line = $domain_text_split[0]; + chomp $domain_at_start_of_line; + if ($domain_at_start_of_line eq "domain") { + $cli_domain_overrides = 1; + } + } + } + if ($cli_domain_overrides == 1) { + print "\t[overridden by domain-name set using CLI]\n"; + } else { + print "\n"; + } + } print "router : $new_routers\n" if defined $new_routers; print "name server: $new_domain_name_servers\n" if defined $new_domain_name_servers; |