|
Bugzilla – Full Text Bug Listing |
| Summary: | autofs ldap failure to separate on colon breaks compatibility | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE LINUX 10.0 | Reporter: | Leah Cunningham <leah> |
| Component: | Basesystem | Assignee: | Ralf Haferkamp <ralf> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | krause |
| Version: | RC 1 | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | All | ||
| URL: | https://heinous.org/wiki/OpenLDAP_Notes#Autofs | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Attachments: |
ldif of a broken under SUSE but working under Red Hat autofs ldap entries
ldif of work-around so we can have same entries for both SUSE and Red Hat |
||
|
Description
Leah Cunningham
2005-09-15 18:18:43 UTC
Created attachment 50063 [details]
ldif of a broken under SUSE but working under Red Hat autofs ldap entries
Created attachment 50065 [details]
ldif of work-around so we can have same entries for both SUSE and Red Hat
This is ugly, but allows both the SUSE and Red Hat clients to mount the same
directories. This also demonstrates the subtle difference. This LDIF is only
of the auto.master entries, as nothing else changes.
Ralf, please take care i have the same problem using opensuse 10.0, with debian woody and sarge the automout maps (similar to them mentioned in the first post) are working without problems.
as a work-around i modified the function "getmounts_ldap()" in /etc/init.d/autofs (added the line starting with "+"):
-------
#
# Get list of ldap mounts.
#
function getmounts_ldap()
{
/usr/lib/autofs/autofs-ldap-auto-master | (
while read dir prog map; do
+ prog=$( echo "$prog" | sed "s/:/ /" )
echo "$DAEMON $daemonoptions $dir $prog \"$map\""
done
)
}
------
it's not "nice" but it's working, a fix would be much appreciated!
Fixed for 10.1. |