Changeset 177 for trunk


Ignore:
Timestamp:
04/14/10 09:20:25 (14 years ago)
Author:
bas
Message:

New version with some minor bug fixes, closes #11

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Changelog

    r172 r177  
     13.1.2:
     2  * Added rpm spec file
     3    Author: Ramon Bastiaans ( bastiaans add sara dot nl )
     4
     5  * Fixed a bug in pxconfig when 'client_script_hook' is not set in
     6    pxeconfig file.
     7    Reporter: Ramon Bastiaans (bastiaans add sara dot nl)
     8    Fixed by: Bas van der Vlies
     9
     10  * Removed some obselete code from pxeconfigd
     11    Fixed by: Bas van der Vlies
     12   
    1133.1.0:
    214  * Added client/daemon hook script code. Two new options
  • trunk/debian/changelog

    r172 r177  
     1pxeconfig (3.1.2-1) stable; urgency=low
     2
     3  * See Changelog
     4
     5 -- Bas van der Vlies <basv@sara.nl>  Wed, 14 Apr 2010 09:18:43 +0200
     6
    17pxeconfig (3.1.0-1) stable; urgency=low
    28
  • trunk/pxeconfig.spec

    r176 r177  
    44
    55Name: pxeconfig
    6 Version: 3.1.0
     6Version: 3.1.2
    77Release: 1%{?dist}
    88License: See LICENSE
  • trunk/src/pxeconfig.py

    r172 r177  
    289289
    290290        # ...
    291         if settings['client_script_hook']:
     291        try:
    292292                options.SCRIPT_HOOK = settings['client_script_hook']
     293i       execpt KeyError, detail:
     294                pass
    293295
    294296        if options.DEBUG:
  • trunk/src/pxeconfigd.py

    r174 r177  
    117117
    118118        try:
    119                 settings['daemon_script_hook']
    120119                cmd = '%s %s' %(settings['daemon_script_hook'], client_ip)
    121120                print cmd
Note: See TracChangeset for help on using the changeset viewer.