-
Notifications
You must be signed in to change notification settings - Fork 13
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
conn: use /usr/bin/env to run the shell #96
Conversation
c465c0a
to
f1bd2c4
Compare
Cc: @ikerexxe For commit 2 (where the meat is), please add:
The patch LGTM. Thanks! |
To make the code more portable to distributions that don't have bash in /usr/bin. Resolves: next-actions#95 Link: <shadow-maint/shadow#1131> Reported-by: Iker Pedrosa <[email protected]> Reported-by: Alejandro Colomar <[email protected]> Suggested-by: Alejandro Colomar <[email protected]>
The original link is no longer available.
Done |
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.
There's another mention of /usr/bin/bash -c
in pytest_mh/_private/multihost.py
, it's a comment so it wouldn't be a big deal to forget about it, but I'd prefer to update it and have everything aligned.
Apart from that it looks good. Will you be able to generate a new release after these changes are merged? I'd like to pin a specific version of pytest-mh in shadow.
It was already removed in the first commit 🤦 |
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!
To make the code more portable to distributions that don't have bash in
/usr/bin.