We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3b86a commit 3465daeCopy full SHA for 3465dae
pkg/blobfuse-proxy/install-proxy-rhcos.sh
@@ -19,10 +19,10 @@ set -xe
19
# in coreos, we could just copy the blobfuse2 binary to /usr/local/bin/blobfuse2
20
if [ "${INSTALL_BLOBFUSE}" = "true" ] || [ "${INSTALL_BLOBFUSE2}" = "true" ]
21
then
22
- echo "copy blobfuse2...."
23
old=$(sha256sum /host/usr/local/bin/blobfuse2 | awk '{print $1}')
24
new=$(sha256sum /usr/bin/blobfuse2 | awk '{print $1}')
25
if [ "$old" != "$new" ];then
+ echo "copy blobfuse2...."
26
cp /usr/bin/blobfuse2 /host/usr/local/bin/blobfuse2 --force
27
fi
28
0 commit comments