Changeset 920 for pykota/trunk/setup.py

Show
Ignore:
Timestamp:
04/15/03 19:49:29 (21 years ago)
Author:
jalet
Message:

Installation script now checks the presence of Netatalk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/setup.py

    r884 r920  
    2323# 
    2424# $Log$ 
     25# Revision 1.8  2003/04/15 17:49:29  jalet 
     26# Installation script now checks the presence of Netatalk 
     27# 
    2528# Revision 1.7  2003/04/03 20:03:37  jalet 
    2629# Installation script now allows to install the sample configuration file. 
     
    140143    # checks if some needed Python modules are there or not. 
    141144    modulestocheck = [("PygreSQL", "pg"), ("mxDateTime", "mx.DateTime")] 
    142     commandstocheck = [("SNMP Tools", "snmpget")] 
     145    commandstocheck = [("SNMP Tools", "snmpget"), ("Netatalk", "pap")] 
    143146    for (name, module) in modulestocheck : 
    144147        action = checkWithPrompt(name, module=module)