-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
podman: get the current user from whoami instead of the environment
b5509a1 uses $USER to get the home for the current user, but if the controller does not run login(1), like in containers, the variable is not set. This commit uses whoami to get the current user. - src/molecule_plugins/podman/playbooks: remove $USER logic and use whoami to get the current user - tox.ini: remove USER from the pass_env list - test/podman/test_func.py: added test with a different $HOME - .github/workflow/tox.yml: bump PYTEST_REQPASS
- Loading branch information
1 parent
10a502b
commit a807707
Showing
5 changed files
with
34 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,6 @@ passenv = | |
SSL_CERT_FILE | ||
TOXENV | ||
TWINE_* | ||
USER | ||
allowlist_externals = | ||
bash | ||
twine | ||
|