. fix some regexps for ip address detection; [1]

. bump PORTREVISION.

PR:		ports/140012  [1]
Submitted by:	Mark Round <mark.round at ahc.uk.com>  [1]
Final patch by:	maintainer (Justin Head <ports at encarnate.com>)  [1]
This commit is contained in:
Boris Samorodov 2009-11-16 08:51:33 +00:00
parent 3762679044
commit 877130c1aa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=244327
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= heartbeat
PORTVERSION= 2.1.4
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= sysutils
#MASTER_SITES= http://hg.linux-ha.org/lha-2.1/archive/STABLE-2.1.4.tar.bz2
MASTER_SITES= ${MASTER_SITE_LOCAL}

View File

@ -41,11 +41,11 @@ Patch attached with submission follows:
+
+ while (<STDIN>) {
+ chomp();
+ if ( /^(\w+):\s+flags=/ ) {
+ if ( /^(\w+):\sflags=/ ) {
+ $if_name = $1;
+ $if_status = ( /UP/ ) ? 1 : 0;
+ }
+ if ( /^\s+inet\s+${ip}/ ) {
+ if ( /^\tinet\s${ip}\s/ ) {
+ if ( $if_status ) {
+ print $if_name;
+ exit(0)