Bug 119682
| Summary: | Rebuilding without SELinux support dies | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Robert Scheck <redhat-bugzilla> |
| Component: | sudo | Assignee: | Thomas Woerner <twoerner> |
| Status: | CLOSED RAWHIDE | QA Contact: | Ben Levenson <benl> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | rawhide | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2004-04-01 16:18:39 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Fixed in rawhide in rpm sudo-1.6.7p5-25 or newer. |
Description of problem: Rebuilding without SELinux dies, because there is a file (%{_sbindir}/sesh) added with the SELinux patch and that file isn't conditional in the files section. Version-Release number of selected component (if applicable): sudo-1.6.7p5-24 How reproducible: Rebuild sudo without SELinux support Actual results: --- sudo.spec 2004-04-01 16:14:31.000000000 +0200 +++ sudo.spec.rsc 2004-04-01 16:18:15.000000000 +0200 @@ -78,7 +78,9 @@ %dir /var/run/sudo %attr(4111,root,root) %{_bindir}/sudo %attr(0755,root,root) %{_sbindir}/visudo +%if %{WITH_SELINUX} %attr(0755,root,root) %{_sbindir}/sesh +%endif %{_mandir}/man5/sudoers.5* %{_mandir}/man8/sudo.8* %{_mandir}/man8/visudo.8* Expected results: Please add this or a better fix, because if the SELinux support is conditional, it should be working both ways... - thank you :)