We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the generated docker script interpolates the variable $HOME when it should not
$HOME
ETCDIR=/etc BINDIR=/bin envsubst < docker.in
#!/bin/sh [ -e /etc/containers/nodocker ] || [ -e "\${XDG_CONFIG_HOME-\/home/siretart/.config}/containers/nodocker" ] || \ echo "Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg." >&2 exec /bin/podman "$@"
#!/bin/sh [ -e /etc/containers/nodocker ] || [ -e "${XDG_CONFIG_HOME-${HOME}/.config}/containers/nodocker" ] || \ echo "Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg." >&2 exec /bin/podman "$@"
not necessary
No
None
Yes
this is actually the only issue found that makes the debian package fail the reproducibilty test: https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/podman.html
All other bits and pieces of podman are bit-for-bit reproducible! great work! :-)
The text was updated successfully, but these errors were encountered:
It is the same in Fedora package. But you probably don't get far without $XDG_CONFIG_HOME anyway?
#!/usr/bin/sh [ -e /etc/containers/nodocker ] || [ -e "\${XDG_CONFIG_HOME-\/builddir/.config}/containers/nodocker" ] || \ echo "Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg." >&2 exec /usr/bin/podman "$@"
EDIT: The dollar is actually escaped, so it is broken there too... (Only the /etc/containers/nodocker works)
https://koji.fedoraproject.org/koji/buildinfo?buildID=2596372
Sorry, something went wrong.
No branches or pull requests
Issue Description
the generated docker script interpolates the variable
$HOME
when it should notSteps to reproduce the issue
Describe the results you received
Describe the results you expected
podman info output
not necessary
Podman in a container
No
Privileged Or Rootless
None
Upstream Latest Release
Yes
Additional environment details
not necessary
Additional information
this is actually the only issue found that makes the debian package fail the reproducibilty test: https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/podman.html
All other bits and pieces of podman are bit-for-bit reproducible! great work! :-)
The text was updated successfully, but these errors were encountered: