Age | Commit message (Collapse) | Author | Files | Lines |
|
This reverts commit 30c76633788c498b7d34e7e5944a3d36f26ec2db.
|
|
|
|
|
|
Also changes setautomntent_send so that is only return NULL in case the
tevent_req creation fails.
|
|
https://fedorahosted.org/sssd/ticket/1300
|
|
https://fedorahosted.org/sssd/ticket/1237
|
|
|
|
https://fedorahosted.org/sssd/ticket/1237
|
|
https://fedorahosted.org/sssd/ticket/1234
|
|
https://fedorahosted.org/sssd/ticket/1166
|
|
A very simply binary that can be used to test getting data from the
library via SSSD in pretty much the same way SSSD would. A required
positional parameter specifies the map name and the tool would print out
all the key/value pairs using _sss_getautomntent_r(). You can also
specify -n to query a specific key using _sss_getautomntbyname_r().
|
|
This is the library the autofs client is using. automounter dlopen()s
the library so there is no header file, no pkgconfig file and the
library is in the libsss_autofs package, not in -devel.
The library provides the following interface:
* _sss_setautomntent() - select the map for processing
* _sss_getautomntent_r() - iterates through key/value pairs in the
selected map. The key is usually the mount
point, the value is mount information
(server:/export)
* _sss_getautomntbyname_r() - returns value for a specific key.
* _sss_endautomntent() deselect a map, clean up
|