aboutsummaryrefslogtreecommitdiff
path: root/kiwi-build
diff options
from:
to:
context:
space:
mode:
authorGravatar Jiri Konecny <jkonecny@redhat.com> 2025-06-12 12:49:37 +0200
committerGravatar Jiri Konecny <jkonecny@redhat.com> 2025-06-12 12:49:37 +0200
commit76aff528ff38db4802bd5dacbe8860b375ce4c61 (patch)
treeea96ad6db364f691af7e8b61c4dec026e5be30fe /kiwi-build
parent6e1239589b1712adcea3a5de355268113d97bcbf (diff)
downloadkiwi-descriptions-76aff528ff38db4802bd5dacbe8860b375ce4c61.tar.gz
kiwi-descriptions-76aff528ff38db4802bd5dacbe8860b375ce4c61.zip
Remove sshfs sharing backend from boxed build
The sshfs sharing backend doesn't work in containers where the default one works just fine. To make the --isolated builds more accessible just use the default. The default in kiwi is currently: --9p-sharing
Diffstat (limited to 'kiwi-build')
-rwxr-xr-xkiwi-build2
1 files changed, 1 insertions, 1 deletions
diff --git a/kiwi-build b/kiwi-build
index bc1920c..0479f42 100755
--- a/kiwi-build
+++ b/kiwi-build
@@ -80,7 +80,7 @@ set +e
if [ ! ${kiwi_isolated} ]; then
kiwi-ng ${debug} --type="${image_type}" --profile="${image_profile}" --kiwi-file="${kiwi_file}" --color-output system build --description "${kiwi_description_dir}" --target-dir "${output_dir}-build" ${kiwibuild_extra_args:+${kiwibuild_extra_args}}
else
- kiwi-ng ${debug} --type="${image_type}" --profile="${image_profile}" --kiwi-file="${kiwi_file}" --color-output system boxbuild --box universal --sshfs-sharing -- --description "${kiwi_description_dir}" --target-dir "${output_dir}-build" ${kiwibuild_extra_args:+${kiwibuild_extra_args}}
+ kiwi-ng ${debug} --type="${image_type}" --profile="${image_profile}" --kiwi-file="${kiwi_file}" --color-output system boxbuild --box universal -- --description "${kiwi_description_dir}" --target-dir "${output_dir}-build" ${kiwibuild_extra_args:+${kiwibuild_extra_args}}
fi
kiwi_status=$?
set -e