-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
System tests: new system-df and passwd tests #7151
Conversation
I have a sinking feeling that this is related to CVE-2020-10713 and, sigh, I kind of bet all our CI is going to start failing:
|
LGTM |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: edsantiago, rhatdan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
- New test for containers#6991 - passwd file is writable even when run with --userns=keep-id - Enable another keep-id test, commented out due to containers#6593 - New test for podman system df Also, independently, removed this line: apt-get -y upgrade conmon ...because it's causing CI failures, probably because of the boothole CVE, probably because the Ubuntu grub update was rushed out. I believe it is safe to remove this, because both Ubuntu 19 and 20 report: conmon is already the newest version (2.0.18~1). Signed-off-by: Ed Santiago <[email protected]>
This now includes a fix for the Ubuntu upgrade problem. (Maybe "fix" is too strong a word, but anyway, CI is passing and should pass on any PRs rebased on this) |
LGTM |
/lgtm |
@edsantiago I think the CVE you found is a red-herring, or has since been fixed by a new package. The device not being available is odd, I'm not that worried about this because:
On a fresh #7138 Chewbuntu 20 VM I see the same
So I think we'll be okay once my PR merges, but thanks for bringing the issue to me for a closer look. |
@cevich thanks, I'm not worried about this one. I have to assume that Ubuntu botched their grub CVE fix, then corrected that situation with a followup package. The fix I pushed here (removing the apt command) is just added safety. |
New test for Make changes to /etc/passwd on disk for non-read only #6991 - passwd file is writable even when
run with --userns=keep-id
Enable another keep-id test, commented out due to Json output of podman images not affected by sorting options #6593
New test for podman system df
Signed-off-by: Ed Santiago [email protected]