Bug 83924
| Summary: | csh.login specifies wrong readline conf file (inputrc) | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Michael Wardle <michael.wardle> | ||||
| Component: | setup | Assignee: | Bill Nottingham <notting> | ||||
| Status: | CLOSED RAWHIDE | QA Contact: | David Lawrence <dkl> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 8.0 | CC: | rvokal | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | All | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | 2.5.32-1 | Doc Type: | Bug Fix | ||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2004-09-23 05:30:38 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: | |||||||
| Attachments: |
|
||||||
*** Bug 83925 has been marked as a duplicate of this bug. *** Created attachment 89958 [details]
set to ~/.inputrc if it exists else set to /etc/inputrc if that exists
Trivial patch showing a possible solution.
if ~/.inputrc is a file, set $INPUTRC to that
else if /etc/inputrc is a file, set $INPUTRC to that
Please try to fix this for the next Red Hat release. It's a very simple fix, but in its current state, it causes problems for any tcsh user wanting to use Emacs, gdb, bash, or any other program that uses readline. The smallest change, and the one which makes the csh login script equivalent to the bash login script is to change: if ( -f $HOME/.inputrc ) then to if ( ! $?INPUTRC && ! -f $HOME/.inputrc ) then This was fixed in 2.5.32. |
Description of problem: /etc/csh.login tests for the existence of the user's readline configuration file (~/.inputrc), but sets it to the system-wide readline configuration file (/etc/inputrc) if the user's configuration file is found. Version-Release number of selected component (if applicable): setup-2.5.12-1 tcsh-6.10-6 readline-4.2a-4 How reproducible: Always Steps to Reproduce: 1. Change login shell to tcsh 2. Log in 3. Print the value of $INPUTRC Actual results: Value is /etc/inputrc. Expected results: Value is $HOME/.inputrc or unset. Additional info: This exists in Red Hat 7.3 thru 8.0.92. I assume it still exists in the current version.