From: Stephen Soltesz Date: Fri, 11 Apr 2008 21:02:53 +0000 (+0000) Subject: instructs user how to create the 'auth.py' file. X-Git-Tag: Monitor-1.0-1~5 X-Git-Url: http://git.onelab.eu/?p=monitor.git;a=commitdiff_plain;h=06d54a80aa888ed335c14761a6730e4bf806cd44 instructs user how to create the 'auth.py' file. --- diff --git a/keys/setup.py b/keys/setup.py index fd04125..8900bf9 100644 --- a/keys/setup.py +++ b/keys/setup.py @@ -7,10 +7,23 @@ # privilges in order to setup an ssh key, add a user, and upload the key to # the user, make the user a member of the PLC site, etc. -import auth -import plc import sys import os +try: + import auth +except: + print """ + Create a file named: 'auth.py' which contains two variables: + +plc = "https://yourplc.hostname.org/PLCAPI/" +auth = {'Username': 'root@localhost.localdomain', + 'AuthMethod': 'password', + 'AuthString': 'root'} + +""" + sys.exit(1) + +import plc def filevalue(filename): f = open(filename, 'r')