Bug 2154
| Summary: | rdist to a RH 5.1 machine doesn't work for normal users | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Chris Siebenmann <cks-rhbugzilla> |
| Component: | rdist | Assignee: | Phil Knirsch <pknirsch> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | high | Docs Contact: | |
| Priority: | medium | ||
| Version: | 5.1 | CC: | rvokal |
| 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: | 1999-06-03 17:49:56 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: | |||
|
Description
Chris Siebenmann
1999-04-12 22:24:24 UTC
Jeff, we really have to fix this one. The argument that "rdist is mostly broken" doesn't hold water because
"normal people" still have to setup their .rhosts to permit access.
Setting the PATH environment variable is part of the process of
permitting remote access that needs to be performed by the user,
not Red Hat.
Adding /usr/sbin to the PATH variable in a file read during
non-interactive, non-login (i.e. rsh) access (i.e. ~/.bashrc for bash)
permits rdist to work.
For bash, add to ~/.bashrc
PATH="$PATH:/usr/sbin"
For tcsh (and csh), add to ~/.cshrc
setenv PATH "${PATH}:/usr/sbin"
Otherwise, create a symlink from /usr/sbin/rdistd to someplace
within the path, as in
ln -sf /usr/sbin/rdistd /usr/bin/rdistd
I'll take a look at adding the /usr/bin/rdistd symlink in the rdist
package, but the fix probably won't be in Red Hat 6.0. Thanks for this
(and your many other) reports.
|