diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-08-26 15:20:38 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-08-26 15:20:38 +0200 |
commit | 1a13704532d6118881fa74f30ff76e44d569b507 (patch) | |
tree | 3e14b05673c1f26f0a83215099ccb4af37200270 | |
parent | 7ed834d8f3f320814607ee3f0fe79975a7494293 (diff) | |
download | remote-logon-config-agent-1a13704532d6118881fa74f30ff76e44d569b507.tar.gz remote-logon-config-agent-1a13704532d6118881fa74f30ff76e44d569b507.tar.bz2 remote-logon-config-agent-1a13704532d6118881fa74f30ff76e44d569b507.zip |
rename thin(-|)client-config-agent script to remote-logon-config-agent (as it is a helper tool for the remote-logon-service utilized by Arctica Greeter
-rw-r--r-- | README | 21 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 12 insertions, 11 deletions
@@ -1,12 +1,13 @@ -thinclient-config-agent -######################## +remote-logon-config-agent +######################### Usage ===== -This is a commandline tool and Python library for retrieving a user's remote -desktop configuration from uccs servers such as uccs.landscape.canonical.com. -It is intended for programmatic use. +This is a commandline tool and Python library for retrieving a user's +remote desktop configuration from UCCS like servers as provided by the +Arctica Session Brokerage Service or the X2Go Session Broker. It is +intended for programmatic use. It accepts a password via stdin and an email address as its sole argument. These must be valid credentials on the uccs server's SSO server, typically @@ -14,7 +15,7 @@ login.canonical.com. Example usage:: - echo test|./thinclient-config-agent mark + echo test|./remote-logon-config-agent mark Exit codes: @@ -39,13 +40,13 @@ Errors are emitted as text on stderr and as JSON on stdout. Development =========== -Coding style is PEP8. Python 2.7 is the target version. +Coding style is PEP8. Python 3.4 is the target version. Running tests ------------- Tests can be run using setup.py's test subcommand:: - $ python setup.py test + $ python3 setup.py test Or by using the "check" makefile target:: @@ -89,8 +90,8 @@ certificates. Examples:: # test against staging instance via http - echo test|SERVER_ROOT=http://91.189.93.90 ./thinclient-config-agent mark + echo test|SERVER_ROOT=http://91.189.93.90 ./remote-logon-config-agent mark # test against Canonistack instance via https - echo test|SERVER_ROOT=https://91.189.93.90 ./thinclient-config-agent mark\ + echo test|SERVER_ROOT=https://91.189.93.90 ./remote-logon-config-agent mark\ --skip-ssl-verify @@ -4,7 +4,7 @@ from setuptools import setup import re setup( - name='thinclient-config-agent', + name='remote-logon-config-agent', version=re.search(r'\((.*)\)', open('debian/changelog').readline()).group(1), license='GPL', description='Retrieve the list of remote desktop servers for a user.', |