Bug 4557
| Summary: | bugs in kde.csh in kdesupport-1.1.1-1 | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | david_pedersen |
| Component: | kdesupport | Assignee: | David Lawrence <dkl> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | medium | 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-08-18 15:28:41 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 file kde.csh has several defects. If I'm a user and attempt to login to my machine, the sourcing of kde.csh will fail... list of bugs [1] didn't use 'set' when specifying 'kdepath' [2] final 'if...then' doesn't check exit status, instead checks output of command 'echo $path | grep -q $kdepath'..need to look at exit status by either using {} around command or via the $status variable Here is a script with the issues fixed...just do a diff with original to see problems... ----------- # KDE initialization script (csh) if ( $?KDEDIR ) then if ( $KDEDIR == "/usr" ) then exit endif endif setenv KDEDIR /usr set kdepath="${KDEDIR}/bin" echo $path | grep $kdepath > /dev/null if ( $status ) then exit endif setenv PATH "${kdepath}:${PATH}"