In recent changes I made to my project I encountered this issue:
sshpass -e mender-artifact-3.10 write rootfs-image \
--file ssh://root@<PARAM>:22 \
--software-version <PARAM> \
--artifact-name <PARAM> \
--output-path <PARAM> \
--ssh-args='-o StrictHostKeyChecking=no' \
--device-type <PARAM>
error while loading shared libraries: libssl.so.3: cannot open shared object file: No such file or directory
imgFilesystemType error: imgFilesystemType: blkid command failed: exit status 2
- The
mender-artifact
is executed ondebian-bullseye
which has openssl1 - It happens when the target host runs
ubuntu 18
. (When the target isubuntu 22
the artifact is created successfully) - It is a consistent behavior, not flaky
Can someone help me understand it? What might cause it?
Is it an issue with my mender-client
on the host? Any tips to debug it?
Thank you!