Bug 3709
| Summary: | Bug in new /etc/profile.d/kde.csh from kdesupport-1.1.1-1 | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Raul Acevedo <raul> |
| Component: | kdesupport | Assignee: | David Lawrence <dkl> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | high | Docs Contact: | |
| Priority: | high | ||
| Version: | 6.0 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-06-25 10:28:35 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: | |||
The following bug(s) cause an error every time a user tries to login or execute a shell, if their default shell is csh/tcsh. It also halts processing of the user's own customization files. The 8th line in /etc/profile.d/kde.csh says: kdepath="${KDEDIR}/bin" Because this is for csh, not sh, it should read: set kdepath="${KDEDIR}/bin" Also, lines 10 through 12 that read: if ( echo ${PATH} | grep -q ${kdepath} ) then exit endif should read echo $PATH | grep -q $kdepath && exit