1
24.1 Legacy Series / Re: Upgrade to 24.1.3 (HA Backup Node) -> Unbound crash
« on: April 06, 2024, 08:45:26 pm »Ok, let's try to find where this is coming from, does reinstalling py-idna make a difference?Code: [Select]pkg install -f py39-idna-3.6
If it doesn't, can you try to start python manually and run the following commands? (in python3)Code: [Select]import importlib.metadata
importlib.metadata.version('idna')
import idna
idna.__path__
I expect the second line to crash with the same error as reported earlier, then we will import idna to check its actual location.
Code: [Select]
# pkg install -f py39-idna-3.6
Updating OPNsense repository catalogue...
OPNsense repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The following 1 package(s) will be affected (of 0 checked):
Installed packages to be REINSTALLED:
py39-idna-3.6
Number of packages to be reinstalled: 1
Proceed with this action? [y/N]: y
[1/1] Reinstalling py39-idna-3.6...
[1/1] Extracting py39-idna-3.6: 100%
# python3.9
Python 3.9.18 (main, Apr 3 2024, 19:59:28)
[Clang 14.0.5 (https://github.com/llvm/llvm-project.git llvmorg-14.0.5-0-gc1238 on freebsd13
Type "help", "copyright", "credits" or "license" for more information.
>>> import importlib.metadata
>>> importlib.metadata.version('idna')
>>>
>>> import idna
>>> idna.__path__
['/usr/local/lib/python3.9/site-packages/idna']