Use distro_python_version in fernet-node-sync
Since Debian and Ubuntu are already on Python3 only and don't have unversioned Python binaries (no /usr/bin/python) - we need to call the fetch-fernet-tokens script using distro_python_version Backport: train Related-Bug: #1859047 Change-Id: I42378af9b25f14079fc57b4068ab25d5d4877362
This commit is contained in:
parent
7d611108ae
commit
4072a3ebff
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Get data on the fernet tokens
|
||||
TOKEN_CHECK=$(/usr/bin/fetch_fernet_tokens.py -t {{ fernet_token_expiry }} -n {{ (groups['keystone'] | length) + 1 }})
|
||||
TOKEN_CHECK=$(/usr/bin/python{{ distro_python_version }} /usr/bin/fetch_fernet_tokens.py -t {{ fernet_token_expiry }} -n {{ (groups['keystone'] | length) + 1 }})
|
||||
|
||||
# Ensure the primary token exists and is not stale
|
||||
if $(echo "$TOKEN_CHECK" | grep -q '"update_required":"false"'); then
|
||||
|
Loading…
x
Reference in New Issue
Block a user