-
Notifications
You must be signed in to change notification settings - Fork 726
Allow using process substitution for cloud-init file #2700
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
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2700 +/- ##
==========================================
- Coverage 86.64% 86.54% -0.11%
==========================================
Files 218 218
Lines 10981 10904 -77
==========================================
- Hits 9515 9437 -78
- Misses 1466 1467 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
LGTM, thanks!
bors merge
2700: Allow using process substitution for cloud-init file r=townsend2010 a=andrei-toterman Passing a process substitution to `--cloud-init` didn't work since it was checking if it received a regular file, but a process substitution returns a named pipe. Unfortunately QT doesn't have a way to check if a path is a named pipe, but fortunately `std::filesystem` does. fix #1589 Co-authored-by: Andrei Toterman <[email protected]>
|
Build failed: |
|
bors retry |
2700: Allow using process substitution for cloud-init file r=townsend2010 a=andrei-toterman Passing a process substitution to `--cloud-init` didn't work since it was checking if it received a regular file, but a process substitution returns a named pipe. Unfortunately QT doesn't have a way to check if a path is a named pipe, but fortunately `std::filesystem` does. fix #1589 Co-authored-by: Andrei Toterman <[email protected]>
|
Build failed: |
|
bors retry |
2700: Allow using process substitution for cloud-init file r=townsend2010 a=andrei-toterman Passing a process substitution to `--cloud-init` didn't work since it was checking if it received a regular file, but a process substitution returns a named pipe. Unfortunately QT doesn't have a way to check if a path is a named pipe, but fortunately `std::filesystem` does. fix #1589 Co-authored-by: Andrei Toterman <[email protected]>
|
Build failed: |
|
Again... bors retry |
Passing a process substitution to
--cloud-initdidn't work since it was checking if it received a regular file, but a process substitution returns a named pipe. Unfortunately QT doesn't have a way to check if a path is a named pipe, but fortunatelystd::filesystemdoes.fix #1589