Changeset 1483 for pykota/trunk/setup.py

Show
Ignore:
Timestamp:
05/18/04 16:49:34 (20 years ago)
Author:
jalet
Message:

Big code changes to completely remove the need for "requester" directives,
jsut use "hardware(... your previous requester directive's content ...)"

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/setup.py

    r1476 r1483  
    2424# 
    2525# $Log$ 
     26# Revision 1.42  2004/05/18 14:48:46  jalet 
     27# Big code changes to completely remove the need for "requester" directives, 
     28# jsut use "hardware(... your previous requester directive's content ...)" 
     29# 
    2630# Revision 1.41  2004/05/13 14:17:32  jalet 
    2731# Warning about changed accounter and requester directives 
     
    301305                 
    302306        # now checks if pre-1.19alpha8 code is still there        
    303         for module in ["accounters/querying", "accounters/external", "requesters/snmp"] : 
     307        for module in ["accounters/querying", "accounters/external", "requesters/snmp", "requesters/external"] : 
    304308            checkOldModule(module) 
    305309         
     
    377381    dummy = raw_input("Please press ENTER when you have read the message above. ") 
    378382     
    379     sys.stdout.write("\n\nWARNING : IF YOU ARE UPGRADING FROM A PRE-1.19alpha8 TO 1.19alpha8 OR ABOVE\n") 
     383    sys.stdout.write("\n\nWARNING : IF YOU ARE UPGRADING FROM A PRE-1.19alpha10 TO 1.19alpha10 OR ABOVE\n") 
    380384    sys.stdout.write("YOU **MUST** MODIFY YOUR /etc/pykota/pykota.conf FILE BECAUSE accounter\n") 
    381385    sys.stdout.write("AND requester DIRECTIVES SUPPORTED VALUES HAVE CHANGED.\n\n") 
    382386    sys.stdout.write("YOU CAN DO THAT AFTER THE INSTALLATION IS FINISHED, OR PRESS CTRL+C NOW.\n") 
    383     sys.stdout.write("\n\nYOU DON'T HAVE ANYTHING SPECIAL TO DO IF THIS IS YOUR FIRST INSTALLATION\nOR IF YOU ARE ALREADY RUNNING VERSION 1.19alpha8 OR ABOVE.\n\n") 
     387    sys.stdout.write("\n\nYOU DON'T HAVE ANYTHING SPECIAL TO DO IF THIS IS YOUR FIRST INSTALLATION\nOR IF YOU ARE ALREADY RUNNING VERSION 1.19alpha10 OR ABOVE.\n\n") 
    384388    dummy = raw_input("Please press ENTER when you have read the message above. ") 
    385389     
     
    442446      author_email = "alet@librelogiciel.com", 
    443447      url = "http://www.librelogiciel.com/software/", 
    444       packages = [ "pykota", "pykota.storages", "pykota.requesters", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 
     448      packages = [ "pykota", "pykota.storages", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 
    445449      scripts = [ "bin/pkpgcounter", "bin/snmpprinterstatus", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/pkprinters", "bin/pkhint" ], 
    446450      data_files = data_files)