X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FInstallBase.py;h=e8e00577911181235c51e34c825d6bf4cf6cd65a;hb=66106572a3abf4a15d2066b7dcb7acb5710777cd;hp=4c14d810c1c8d8af56b116c43e33367e8456cd07;hpb=b92ca129acfaf0607e0d704db8f34a88f3ef3ee4;p=bootmanager.git diff --git a/source/steps/InstallBase.py b/source/steps/InstallBase.py index 4c14d81..e8e0057 100644 --- a/source/steps/InstallBase.py +++ b/source/steps/InstallBase.py @@ -55,6 +55,7 @@ def Run( vars, log ): SYSIMG_PATH the path where the system image will be mounted (always starts with TEMP_PATH) INSTALL_LANGS languages for install (used by rpm) + CACERT_PATH where the boot server certificates are Sets the following variables: None @@ -77,6 +78,10 @@ def Run( vars, log ): if INSTALL_LANGS == "": raise ValueError, "INSTALL_LANGS" + CACERT_PATH= vars["CACERT_PATH"] + if CACERT_PATH == "": + raise ValueError, "CACERT_PATH" + except KeyError, var: raise BootManagerException, "Missing variable in vars: %s\n" % var except ValueError, var: