|
|
|
@ -30,7 +30,7 @@ import sys |
|
|
|
import requests |
|
|
|
import os |
|
|
|
|
|
|
|
from sharedfunctions import getprofileinfo |
|
|
|
from sharedfunctions import getprofileinfo, getapplicationproperties |
|
|
|
|
|
|
|
# software versions |
|
|
|
print("Python Version is: "+str(sys.version_info[0])+'.'+str(sys.version_info[1])) |
|
|
|
@ -63,3 +63,13 @@ else: |
|
|
|
print("REQUESTS_CA_BUNDLE environment variable set to profile "+ r_ssl_file) |
|
|
|
|
|
|
|
getprofileinfo(cur_profile) |
|
|
|
|
|
|
|
|
|
|
|
# get cli location from properties |
|
|
|
propertylist=getapplicationproperties() |
|
|
|
|
|
|
|
clidir=propertylist["sascli.location"] |
|
|
|
cliexe=propertylist["sascli.executable"] |
|
|
|
|
|
|
|
clicommand=os.path.join(clidir,cliexe) |
|
|
|
print(propertylist) |
|
|
|
|