[feature request] add a --copy-links option to mise bootstrap remote #12115
marcpmichel
started this conversation in
Ideas
Replies: 1 comment
|
Implemented in #12121 with two scopes:
Both modes are configurable in [bootstrap.remote]
copy_link = ["modules/common", "playbooks/shared"]
# copy_links = true # opt in to recursive global dereferencingThe documentation calls out that global dereferencing can expand deep links and copy content from outside the source directory. AI-assisted — Tool: Codex; model: openai/gpt-5; version: unavailable. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The current behavior of
mise bootstrap remoteis to create a "project" folder in the remote host with the content of the source folder passed as a parameter.As of now, links a copied as-is.
It could be interesting/useful to optionally copy the files/folders represented as symbolic links in the source directory to real files/folders using a
--copy-linksoption ( like other tools like rsync ).mise bootstrap remote myhost --source infra/myhost --copy-linksIt would allow for an easy management of what is sent to the remote host for bootstraping ( think: modules or ansible's playbooks ).
All reactions