We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expected Result darling should bootstrap and then execute the command and write the result into a variable.
Actual Result Darling bootstrap hangs when trying to write the result into a variable indefinitely
Steps To Reproduce This causes a hang:
RANDSTR=$(cat /dev/random | head -c16 | xxd -p) DIRPATH="/tmp/darling.XXXXXXXX"${RANDSTR} MYTMPDIR=$(mktemp -d ${DIRPATH}) export HOME=${MYTMPDIR} rsp=$(/usr/local/bin/darling exec /usr/local/libexec/darling/bin/echo 123)
Output:
Setting up a new Darling prefix at /tmp/darling.sEDpLv9t2ed667d37f5a7ffbcdc87b06c5280f1b/.darling <HANGS HERE FOREVER>
However running it first without writing it to the variable (so that darling can first bootstrap), works as expected.
RANDSTR=$(cat /dev/random | head -c16 | xxd -p) DIRPATH="/tmp/darling.XXXXXXXX"${RANDSTR} MYTMPDIR=$(mktemp -d ${DIRPATH}) export HOME=${MYTMPDIR} /usr/local/bin/darling exec /usr/local/libexec/darling/bin/echo 123 rsp=$(/usr/local/bin/darling exec /usr/local/libexec/darling/bin/echo 123) echo $rsp
Setting up a new Darling prefix at /tmp/darling.WreDvMdhbf5751fbb219b31eb38940698138400b/.darling Bootstrapping the container with launchd... 123 123
dmesg Output Run dmesg | grep 'overlay\|darling'
dmesg
dmesg | grep 'overlay\|darling'
[346121.157101] overlayfs: "xino" feature enabled using 2 upper inode bits.
System Information What system are you running?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Result
darling should bootstrap and then execute the command and write the result into a variable.
Actual Result
Darling bootstrap hangs when trying to write the result into a variable indefinitely
Steps To Reproduce
This causes a hang:
Output:
However running it first without writing it to the variable (so that darling can first bootstrap), works as expected.
Output:
dmesg
OutputRun
dmesg | grep 'overlay\|darling'
System Information
What system are you running?
The text was updated successfully, but these errors were encountered: