-
Notifications
You must be signed in to change notification settings - Fork 51
Add an option to disable Tart clipboard sharing #475
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,6 +33,7 @@ type VM struct { | |
| Headless bool `json:"headless,omitempty"` | ||
| Nested bool `json:"nested,omitempty"` | ||
| NoAudio bool `json:"noAudio,omitempty"` | ||
| NoClipboard bool `json:"noClipboard,omitempty"` | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When a client reads a running VM, changes Useful? React with 👍 / 👎. |
||
|
|
||
| VMSpec | ||
| VMSpecReadOnly | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With
--runtime vetu --no-clipboard, this value is accepted byVM.Validate()and persisted, but the Vetu runner invokes onlyvetu run <id>and never consumesNoClipboard; therefore the request succeeds while the requested setting has no effect. Since only the Tart runner implements this option, reject it forRuntimeVetuas is already done for other Tart-only fields, or implement the equivalent Vetu behavior.Useful? React with 👍 / 👎.