File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 4949if [ " $updateBlobfuse2 " = " true" ]; then
5050 echo " copy blobfuse2...."
5151 cp /usr/bin/blobfuse2 /host${BIN_PATH} /blobfuse2 --force
52+ # if both /usr/lib/libfuse3.so.3 and target folder /host/usr/lib64/ exist, copy libfuse3.so.3 to /host/usr/lib64/
53+ if [ -f " /usr/lib/libfuse3.so.3" ] && [ -d " /host/usr/lib64/" ]; then
54+ echo " copy libfuse3.so.3 to /host/usr/lib64/"
55+ cp /usr/lib/libfuse3.so.3* /host/usr/lib64/
56+ fi
57+ # if both /usr/lib64/libfuse3.so.3 and target folder /host/usr/lib64/ exist, copy libfuse3.so.3 to /host/usr/lib64/
58+ if [ -f " /usr/lib64/libfuse3.so.3" ] && [ -d " /host/usr/lib64/" ]; then
59+ echo " copy libfuse3.so.3 to /host/usr/lib64/"
60+ cp /usr/lib64/libfuse3.so.3* /host/usr/lib64/
61+ fi
5262 chmod 755 /host${BIN_PATH} /blobfuse2
5363fi
5464
You can’t perform that action at this time.
0 commit comments