hbsd-v1400005-524d2601c4b55201f3bcc7f0e5a8e4bf04f5f8ed
I'm having an issue with missing libssl.so.111 required by pkg itself (also curl, wget etc.)
--
root@pkgrepo:~# pkg
ld-elf.so.1: Shared object "libssl.so.111" not found, required by "pkg"
root@pkgrepo:~# curl
ld-elf.so.1: Shared object "libssl.so.111" not found, required by "libcurl.so.4"
root@pkgrepo:~# wget
ld-elf.so.1: Shared object "libssl.so.111" not found, required by "wget"
--
Luckily `pkg-static` still works:
--
root@pkgrepo:~# pkg-static upgrade
Updating HardenedBSD repository catalogue...
HardenedBSD repository is up to date.
All repositories are up to date.
Checking for upgrades (0 candidates): 100%
Processing candidates (0 candidates): 100%
Checking integrity... done (0 conflicting)
Your packages are up to date.
--
Looking for the missing library:
--
root@pkgrepo:~# pkg-static which /usr/local/lib/libssl.so.11
/usr/local/lib/libssl.so.11 was installed by package openssl-1.1.1t_2,1
root@pkgrepo:~# pkg-static which /usr/local/lib/libssl.so.111
/usr/local/lib/libssl.so.111 was not found in the database
--
Any advice or just wait for the repo to update?