openbmctool.py: Update session cookie name
At https://gerrit.openbmc.org/c/openbmc/bmcweb/+/77539 we are going to
rename the BMCWEB session cookie to be BMCWEB-SESSION.
This tool hasn't been updated in 5 years, it uses the old D-Bus REST API
but might as well update it.
Tested: None. Inspection only.
Change-Id: I62564feb7d302bc4889c27eaa69a737171d42eb3
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/openbmctool/openbmctool.py b/openbmctool/openbmctool.py
index 48cdff0..e725dcf 100755
--- a/openbmctool/openbmctool.py
+++ b/openbmctool/openbmctool.py
@@ -130,7 +130,7 @@
resp = mysess.post('https://'+args.host+'/login', headers=jsonHeader,json={"data":[args.user,args.PW]},verify=False)
if resp.status_code == 200:
cookie = resp.headers['Set-Cookie']
- match = re.search('SESSION=(\w+);', cookie)
+ match = re.search('BMCWEB-SESSION=(\w+);', cookie)
return match.group(1)
@@ -435,7 +435,7 @@
r = mysess.post('https://'+host+'/login', headers=jsonHeader, json = {"data": [username, pw]}, verify=False, timeout=baseTimeout)
if r.status_code == 200:
cookie = r.headers['Set-Cookie']
- match = re.search('SESSION=(\w+);', cookie)
+ match = re.search('BMCWEB-SESSION=(\w+);', cookie)
if match:
xAuthHeader['X-Auth-Token'] = match.group(1)
jsonHeader.update(xAuthHeader)