diff options
| author | 2025-06-12 12:49:37 +0200 | |
|---|---|---|
| committer | 2025-06-12 12:49:37 +0200 | |
| commit | 76aff528ff38db4802bd5dacbe8860b375ce4c61 (patch) | |
| tree | ea96ad6db364f691af7e8b61c4dec026e5be30fe /kiwi-build | |
| parent | 6e1239589b1712adcea3a5de355268113d97bcbf (diff) | |
| download | kiwi-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-x | kiwi-build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |