Update for Python 3.12

This commit is contained in:
2024-07-13 15:16:47 +02:00
parent b65b82f5d7
commit d2515b577f
2 changed files with 8 additions and 3 deletions

View File

@@ -10,14 +10,14 @@ if [ -f $run_directory/.disabled ]; then
exit 0
fi
if [ -f /usr/lib/python3.11/site-packages/webssh/handler.py ]; then
if [ -f /usr/lib/python3.12/site-packages/webssh/handler.py ]; then
echo "Alter WebSSH configuration to remove SSH key passphrase from error message..."
if [[ $user != 'root' ]]; then
sudo sed -i -e "s/or wrong passphrase {} for decrypting it/or wrong passphrase for decrypting it/g" \
/usr/lib/python3.11/site-packages/webssh/handler.py
/usr/lib/python3.12/site-packages/webssh/handler.py
else
sed -i -e "s/or wrong passphrase {} for decrypting it/or wrong passphrase for decrypting it/g" \
/usr/lib/python3.11/site-packages/webssh/handler.py
/usr/lib/python3.12/site-packages/webssh/handler.py
fi
else
echo "WARNING: Could not find webssh directory! Could be due to major Python upgrade, or you not using PIP package."