-
Notifications
You must be signed in to change notification settings - Fork 12
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
Parallel rsyncs fail #8
Comments
thanks for raising this, I hadn't thought about that. I hacked this together on a shoestring, and so I'm generally worried that the ssh usage isn't up to par here. I can see three alternative ways of addressing this:
I'm wondering whether, generally, What are your thoughts? |
In my opinion this action is using ssh files as a deployment tool rather than the standardized "hosting keys and authorized_keys" way. For this reason I think the third option would make the most sense here, and preferably the keys would also be cleared up after the action. I agree with what you said about each action being as isolated as possible, so randomized name definitely makes the most sense to me. |
on closer inspection of the
|
Running multiple rsyncs in parallel/after each other fails because the
.ssh
folder already exists. I fixed this in a fork by appending a per-action string to the.ssh
folder, but I guess the folder name could also be just randomly generated string?The text was updated successfully, but these errors were encountered: