X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=config.py;h=5b890de0e83cc333010da91eeb77b183f981c69d;hb=4208b34d6cb160a543bd15caf89da8f359714e0d;hp=14ee71d0af563f575808f1eddbbd369ee4872098;hpb=08fff9819ceb2d126e43cdcfc1f20ccb85703320;p=nodemanager.git diff --git a/config.py b/config.py index 14ee71d..5b890de 100644 --- a/config.py +++ b/config.py @@ -6,9 +6,11 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: config.py,v 1.3 2006/10/31 23:15:12 mlhuang Exp $ +# $Id$ # +import os + class Config: """ Parses Python configuration files; all variables in the file are @@ -23,8 +25,15 @@ class Config: if int(self.PLC_API_PORT) == 443: uri = "https://" + if hasattr(self, 'PLC_API_CA_SSL_CRT'): + self.cacert = self.PLC_API_CA_SSL_CRT + elif os.path.exists('/usr/boot/cacert.pem'): + self.cacert = '/usr/boot/cacert.pem' + else: + raise Exception, "No boot server certificate bundle available" else: uri = "http://" + self.cacert = None uri += self.PLC_API_HOST + \ ":" + str(self.PLC_API_PORT) + \ @@ -32,6 +41,7 @@ class Config: self.plc_api_uri = uri + if __name__ == '__main__': from pprint import pprint pprint(Config().__dict__.items())