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
Currently the prefix is hardcoded to /usr/local, for installing guestagent and containerd.
/usr/local
But that doesn't work, if /usr is read-only (like on Container Linux, which uses /opt).
/usr
/opt
So add an optional parameter.
# Prefix to use for installing guest agent, and containerd with dependencies (if configured) # 🟢 Builtin default: /usr/local prefix: null
The text was updated successfully, but these errors were encountered:
It worked OK anyway on Fedora CoreOS, which does a symlink to /var:
/usr/local -> ../var/usrlocal
But not on the original CoreOS (Flatcar Container Linux), which does not:
install: cannot create regular file '/usr/local/bin/lima-guestagent': Read-only file system
Sorry, something went wrong.
Also needs another Flatcar fix, to set up the symlink from /mnt to /var/mnt.
/mnt
/var/mnt
Successfully merging a pull request may close this issue.
Description
Currently the prefix is hardcoded to
/usr/local
, for installing guestagent and containerd.But that doesn't work, if
/usr
is read-only (like on Container Linux, which uses/opt
).So add an optional parameter.
The text was updated successfully, but these errors were encountered: