Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions pkg/blobfuse-proxy/install-proxy-rhcos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ fi
if [ "$updateBlobfuse2" = "true" ];then
echo "copy blobfuse2...."
cp /usr/bin/blobfuse2 /host${BIN_PATH}/blobfuse2 --force
# if both /usr/lib/libfuse3.so.3 and target folder /host/usr/lib64/ exist, copy libfuse3.so.3 to /host/usr/lib64/
if [ -f "/usr/lib/libfuse3.so.3" ] && [ -d "/host/usr/lib64/" ]; then
echo "copy libfuse3.so.3 to /host/usr/lib64/"
cp /usr/lib/libfuse3.so.3* /host/usr/lib64/
fi
# if both /usr/lib64/libfuse3.so.3 and target folder /host/usr/lib64/ exist, copy libfuse3.so.3 to /host/usr/lib64/
if [ -f "/usr/lib64/libfuse3.so.3" ] && [ -d "/host/usr/lib64/" ]; then
echo "copy libfuse3.so.3 to /host/usr/lib64/"
cp /usr/lib64/libfuse3.so.3* /host/usr/lib64/
fi
chmod 755 /host${BIN_PATH}/blobfuse2
fi

Expand Down
Loading