- Timestamp:
- 04/27/09 11:50:14 (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Changelog
r151 r154 1 3.0.2: 2 * If option remove is specified, then do not ask for configuration file, 3 closses #9 4 Reporter: Ramon Bastiaans (SARA) 5 Author : Bas van der Vlies 6 1 7 3.0.1: 2 8 * Import AdvancedParser instead of sara location. -
trunk/debian/changelog
r151 r154 1 pxeconfig (3.0.2-1) stable; urgency=low 2 3 * If option remove is specified, then do not ask for configuration file, closses #9 4 Reporter: Ramon Bastiaans (SARA) 5 Author : Bas van der Vlies 6 7 8 -- Bas van der Vlies <basv@sara.nl> Mon, 27 Apr 2009 11:48:30 +0200 9 1 10 pxeconfig (3.0.1-1) stable; urgency=low 2 11 -
trunk/src/pxeconfig.py.in
r152 r154 305 305 pass 306 306 307 if options.filename: 308 if not os.path.isfile(os.path.join(PXE_CONF_DIR, options.filename)): 307 if not options.REMOVE: 308 if options.filename: 309 if not os.path.isfile(os.path.join(PXE_CONF_DIR, options.filename)): 309 310 error = '%s: Filename does not exists' %(options.filename) 310 311 raise PxeConfig, error 311 else:312 options.filename = select_pxe_configfile()312 else: 313 options.filename = select_pxe_configfile() 313 314 314 315 if options.DEBUG:
Note: See TracChangeset
for help on using the changeset viewer.