| Summary: | /tmp is read-only for non-root | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 7 | Reporter: | Marius Vollmer <mvollmer> |
| Component: | rhel-server-atomic | Assignee: | Colin Walters <walters> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Ladislav Jozsa <ljozsa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 7.2 | CC: | jkrieger, lfriedma, miabbott |
| Target Milestone: | rc | Keywords: | Extras |
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2020-04-29 15:20:12 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
We'll backport the patch from https://bugzilla.redhat.com/show_bug.cgi?id=1276775 ```
$ rpm-ostree status
State: idle; auto updates disabled
Deployments:
* ostree://rhel-atomic-host-ostree:rhel-atomic-host/7/x86_64/standard
Version: 7.8.0 (2020-03-27 12:03:52)
Commit: 0bbae7b8382b6228274909d26acf455738241115af3de44deac128348036f1ab
ostree://rhel-atomic-host-ostree:rhel-atomic-host/7/x86_64/standard
Version: 7.7.3 (2019-11-19 15:23:12)
Commit: e0ac32316936b7e138a2f9bea407bf20124f34f519e8f7147df3edc69ca86296
$ ls -rld /tmp /sysroot/tmp
lrwxrwxrwx. 3 root root 11 Sep 23 2019 /tmp -> sysroot/tmp
drwxrwxrwt. 16 root root 4096 Apr 29 03:07 /sysroot/tmp
```
|
Description of problem: Running rhel-atomic-cloud-7.2-10.x86_64.qcow2 gives me a /tmp that is read-only for non-root: # ls -rld /tmp /sysroot/tmp lrwxrwxrwx. 1 root root 11 Jan 12 09:10 /tmp -> sysroot/tmp drwxr-xr-t. 7 root root 4096 Jan 12 10:50 /sysroot/tmp I would expect to get rwxrwxrwxt for /sysroot/tmp, as on Fedora Atomic. This is an issue for the Cockpit integration tests. These tests mostly run as a non-root wheel user. Are non-root users not supposed to exist in a RHEL Atomic Host? If so, we can change the tests to run as root (on RHEL-AH only).