Ignore:
Timestamp:
08/19/09 12:21:25 (15 years ago)
Author:
bas
Message:

debian/changelog, Changelog:

  • announce new version

src/pxeconfig.py:

  • did not execute client hook script

src/pxeconfigd.py:

examples/pxeconfigd.xinetd:

  • removed server args options
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/pxeconfigd.py

    r171 r172  
    116116                print 'ip = %s, hex = %s' %(client_ip, client_haddr)
    117117
    118         if settings['daemon_script_hook']:
     118        try:
     119                settings['daemon_script_hook']
    119120                cmd = '%s %s' %(settings['daemon_script_hook'], client_ip)
    120121                print cmd
    121122                os.system(cmd)
     123        except KeyError:
     124                pass
    122125
    123126        remove_link(client_haddr)
Note: See TracChangeset for help on using the changeset viewer.