diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-02-25 12:49:18 -0500 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-02-25 16:09:28 -0500 |
commit | 3997bda452cb4c970f88673a8876bfdc8ad74665 (patch) | |
tree | 694dd6f9dc830df7a84313f5ea1a7282b6981c15 | |
parent | 4f1e7fedc4b252158863429de7a844a4243dfb6b (diff) | |
download | sssd-3997bda452cb4c970f88673a8876bfdc8ad74665.tar.gz sssd-3997bda452cb4c970f88673a8876bfdc8ad74665.tar.xz sssd-3997bda452cb4c970f88673a8876bfdc8ad74665.zip |
Adding InfoPipe entry to config.ldif example
Also updating the .gitignore file to not ignore config.ldif
Signed-off-by: Simo Sorce <ssorce@redhat.com>
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | server/examples/config.ldif | 6 | ||||
-rw-r--r-- | server/infopipe/infopipe.h | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 85001638c..4373c4796 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.[oa] -config.* configure +config.log +config.status Makefile cscope.out *.so diff --git a/server/examples/config.ldif b/server/examples/config.ldif index 0d5c92773..1d419d915 100644 --- a/server/examples/config.ldif +++ b/server/examples/config.ldif @@ -10,6 +10,7 @@ description: Local service configuration activeServices: nss activeServices: dp activeServices: pam +activeServices: info dn: cn=nss,cn=services,cn=config cn: nss @@ -35,6 +36,11 @@ command: /usr/libexec/sssd/sssd_pam description: PAM Responder Configuration unixSocket: /var/lib/sss/pipes/pam +dn: cn=info,cn=services,cn=config +cn: infp +description: InfoPipe Configuration +command: ./sbin/sssd_info + dn: cn=domains,cn=config cn: domains description: Domains served by SSSD diff --git a/server/infopipe/infopipe.h b/server/infopipe/infopipe.h index 6e6b7583b..7a127eb41 100644 --- a/server/infopipe/infopipe.h +++ b/server/infopipe/infopipe.h @@ -31,7 +31,7 @@ #define INFOPIPE_INTERFACE "org.freeipa.sssd.infopipe1" #define INFOPIPE_PATH "/org/freeipa/sssd/infopipe1" #define INFOPIPE_VERSION 0x0001 -#define INFOPIPE_SERVICE_NAME "infp" +#define INFOPIPE_SERVICE_NAME "info" /* InfoPipe Methods * NOTE: Any changes to the method names and arguments for these calls |