You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks to user ZeusMR who uncovered a renamed python 2.x function. The raw_input function was used in one of the specialized scripts connected to the OpenVPN Rockon to generate keys, etc.
Unfortunately, this function has been renamed to input() so the interpreted won't recognize the raw_input function name anymore.
"client configuration is saved at %s. It can be used by your "
"vpn client software to connect."%outfile
)
It will hopefully be as easy as replacing the renamed function name with the new one to get it to work again.
The text was updated successfully, but these errors were encountered:
Hooverdan96
changed the title
[t] OpenVPN scripts for key generation, etc. don't work anymore with python3
[t] OpenVPN scripts for key generation and client enumeration don't work anymore with python3.11+
Feb 26, 2024
Thanks to user ZeusMR who uncovered a renamed python 2.x function. The
raw_input
function was used in one of the specialized scripts connected to the OpenVPN Rockon to generate keys, etc.Unfortunately, this function has been renamed to
input()
so the interpreted won't recognize theraw_input
function name anymore.https://peps.python.org/pep-3111/
This affect these two script functions that were created for the OpenVPN Rockon:
rockstor-core/src/rockstor/scripts/ovpn_util.py
Lines 33 to 50 in 6c86e38
It will hopefully be as easy as replacing the renamed function name with the new one to get it to work again.
The text was updated successfully, but these errors were encountered: