Changeset 114 for trunk


Ignore:
Timestamp:
10/25/07 14:58:15 (16 years ago)
Author:
bas
Message:

Fixed a bug in the -r/--remove option. Do not display
the pxe filename menu

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Changelog

    r109 r114  
     11.X.X
     2 - Fixed a bug in -r/--remove option. Do not display
     3   pxe filemame menu.
     4   Author: Bas van der Vlies
     5
    161.0.0
    27 - List of pxeconfig files are now sorted alphabetically
  • trunk/debian/changelog

    r108 r114  
     1pxeconfig (1.0.0-2) stable; urgency=low
     2
     3  * -r/--remove option does not ask for a filename
     4
     5 -- root <root@mailman.rc.sara.nl>  Thu, 25 Oct 2007 14:54:38 +0200
     6
    17pxeconfig (1.0.0-1) stable; urgency=low
    28
  • trunk/pxeconfig.in

    r108 r114  
    271271        Do you we have the right and propper values
    272272        """
    273         ### check_filename
     273        ### check_filename 
    274274        #
    275275        try:
     
    278278                        sys.exit(1)
    279279        except KeyError, detail:
    280                 binfo[FILENAME] = select_pxe_configfile()
     280                if binfo[REMOVE] :
     281                        binfo[FILENAME] = 'Does not matter'
     282                else:
     283                        binfo[FILENAME] = select_pxe_configfile()
    281284
    282285        if hostnames:
Note: See TracChangeset for help on using the changeset viewer.