Changeset 9516 in genesis


Ignore:
Timestamp:
Aug 9, 2011, 8:54:54 PM (13 years ago)
Author:
rick
Message:

Do not forget about the master_ip which is still used, even if not defined in interface config.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/getrange.py

    r8615 r9516  
    3434                        if match != None:
    3535                                substs[match.group(1)] = match.group(2)
    36                         if l.startswith("IP="):
    37                                 right = l[3:]
     36                        if l.startswith("IP=") or l.startswith("$master_ip="):
     37                                if l.startswith("$master_ip="):
     38                                        right = l.split("'")[1]
     39                                else:
     40                                        right = l[3:]
    3841                                if '/' not in right:
    3942                                        addr = right
Note: See TracChangeset for help on using the changeset viewer.