diff --git a/agent/interfaces.py b/agent/interfaces.py index 2d87d18..29a8f38 100644 --- a/agent/interfaces.py +++ b/agent/interfaces.py @@ -121,7 +121,7 @@ class ITransporter(IAgent): serverURL = Attribute('URL of the server the resources will be ' '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.') machineName = Attribute('Name under which the local machine is ' 'known to the server.') diff --git a/agent/main.py b/agent/main.py index c0673cb..309281a 100755 --- a/agent/main.py +++ b/agent/main.py @@ -55,7 +55,8 @@ def setup(configInfo=None): def setupEnvironment(config): from cybertools.agent.base import agent, control, job, log, 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 api.setup(config) from cybertools.agent.crawl import base, filesystem, outlook