From 06d54a80aa888ed335c14761a6730e4bf806cd44 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Fri, 11 Apr 2008 21:02:53 +0000 Subject: [PATCH] instructs user how to create the 'auth.py' file. --- keys/setup.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) 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') -- 2.43.0