added modules for transport and remote controller

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2666 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2008-06-04 15:47:35 +00:00
parent 615e8c68bf
commit dc970aa2f7
2 changed files with 3 additions and 2 deletions

View file

@ -121,7 +121,7 @@ class ITransporter(IAgent):
serverURL = Attribute('URL of the server the resources will be ' serverURL = Attribute('URL of the server the resources will be '
'transferred to. The URL also determines the ' 'transferred to. The URL also determines the '
'transfer protocol, e.g. HTTP or FTP.') 'transfer protocol, e.g. HTTP or SFTP.')
method = Attribute('Transport method, e.g. PUT.') method = Attribute('Transport method, e.g. PUT.')
machineName = Attribute('Name under which the local machine is ' machineName = Attribute('Name under which the local machine is '
'known to the server.') 'known to the server.')

View file

@ -55,7 +55,8 @@ def setup(configInfo=None):
def setupEnvironment(config): def setupEnvironment(config):
from cybertools.agent.base import agent, control, job, log, schedule from cybertools.agent.base import agent, control, job, log, schedule
from cybertools.agent.core import agent, control, schedule from cybertools.agent.core import agent, control, schedule
from cybertools.agent.control import cmdline from cybertools.agent.control import cmdline, remote
from cybertools.agent.transport import remote, loops
from cybertools.agent.system.windows import api from cybertools.agent.system.windows import api
api.setup(config) api.setup(config)
from cybertools.agent.crawl import base, filesystem, outlook from cybertools.agent.crawl import base, filesystem, outlook