Changeset 17


Ignore:
Timestamp:
09/10/02 16:10:47 (22 years ago)
Author:
sscpbas
Message:

Fixed a bug in hexls. The regexp to determine if a filename is PXE
boot file was wrong.

Location:
trunk/pxeconfig
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/pxeconfig/Changelog

    r16 r17  
     10.3
     2  Fixed a bug in hexls. The regular expression to determine if
     3  a filename is pxe hex filename or ordinary filename was wrong.
     4
    150.2.1
    2         Bugfix now we can run pxeconfig a second time to change the pxe boot file.
    3         Reported by: Ole Holm Nielsen
     6  Bugfix now we can run pxeconfig a second time to change the pxe boot file.
     7  Reported by: Ole Holm Nielsen
    48
    5         Phrase change use 'Select a number:' instead of 'Choice a number'
    6         Proposed by: Ole Holm Nielsen
     9  Phrase change use 'Select a number:' instead of 'Choice a number'
     10  Proposed by: Ole Holm Nielsen
  • trunk/pxeconfig/INSTALL

    r9 r17  
    5656To activate this on a client you must add the following line to the 'master'
    5757script of the node. It will remove the pxe config file for the node
    58 on the bootserver. I personally place the line just before the network
     58from the pxe bootserver. I personally place the line just before the network
    5959interface will be brought down:
    6060   # Remove the <hex_ipaddr> file from the pxelinux.cfg directory.
  • trunk/pxeconfig/changelog

    r16 r17  
    1 Always edit this file when changes are commited:
     1Always edit this file when changes are commited::
    22
    33$Log: changelog,v $
     4Revision 1.15  2002/09/10 14:10:47  sscpbas
     5Fixed a bug in hexls. The regexp to determine if a filename is PXE
     6boot file was wrong.
     7
    48Revision 1.14  2002/08/16 07:43:21  sscpbas
    59Changed the phrase 'Choice a number' to 'Select a number'
  • trunk/pxeconfig/hexls

    r14 r17  
    2626
    2727CVS info
    28   $Date: 2002/08/15 06:36:47 $
    29   $Revision: 1.3 $
     28  $Date: 2002/09/10 14:10:47 $
     29  $Revision: 1.4 $
    3030'''
    3131
     
    3737        '''list directory, convert hexadecimal to dotted decimal'''
    3838
    39         regexp = re.compile('[' + string.hexdigits + ']+')
     39        regexp = re.compile('[' + string.hexdigits + ']{8}' )
    4040        for f in os.listdir(path):
    4141                if regexp.match(f) and len(f) == 8:
Note: See TracChangeset for help on using the changeset viewer.