aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-08-26 15:20:38 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-08-26 15:20:38 +0200
commit1a13704532d6118881fa74f30ff76e44d569b507 (patch)
tree3e14b05673c1f26f0a83215099ccb4af37200270
parent7ed834d8f3f320814607ee3f0fe79975a7494293 (diff)
downloadremote-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--README21
-rw-r--r--setup.py2
2 files changed, 12 insertions, 11 deletions
diff --git a/README b/README
index 7132266..8dd5105 100644
--- a/README
+++ b/README
@@ -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
diff --git a/setup.py b/setup.py
index 5b82eb8..df43b06 100644
--- a/setup.py
+++ b/setup.py
@@ -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.',