Bug 957772
| Summary: | tar-out and base64-out quoting error | |||
|---|---|---|---|---|
| Product: | [Community] Virtualization Tools | Reporter: | Richard W.M. Jones <rjones> | |
| Component: | libguestfs | Assignee: | Richard W.M. Jones <rjones> | |
| Status: | CLOSED UPSTREAM | QA Contact: | ||
| Severity: | unspecified | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | unspecified | CC: | dyasny, mbooth | |
| Target Milestone: | --- | |||
| Target Release: | --- | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 957796 957797 (view as bug list) | Environment: | ||
| Last Closed: | 2013-04-29 14:31:58 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 957796, 957797 | |||
|
Description
Richard W.M. Jones
2013-04-29 13:48:07 UTC
The commit which introduced this error was: https://github.com/libguestfs/libguestfs/commit/c78ec7e085e99bfddd0509dece72bf6a8d0188ce which was also backported to the stable-1.20 branch: https://github.com/libguestfs/libguestfs/commit/1bd81388e02be2e46c24f700217be32786d3ae1a The error was introduced as part of the fix for RHBZ#908322. The fix for bug 908322 also broke the base64-out command in the same way: guestfish -v -N fs -m /dev/sda1 <<EOF touch "/foo bar" base64-out "/foo bar" /tmp/test.b64 EOF In the verbose output for this command you will see: ..... base64 /sysroot/foo bar base64: extra operand '/sysroot/foo' Try 'base64 --help' for more information. pclose: /foo bar: Success guestfsd: main_loop: proc 243 (base64_out) took 0.00 seconds libguestfs: error: file receive cancelled by daemon libguestfs: error: /tmp/test.b64: error in chunked encoding ..... which is the same kind of problem as for tar. |