summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/resource
diff options
context:
space:
mode:
authorDaniel Pittman <daniel@puppetlabs.com>2011-04-14 19:48:48 -0700
committerDaniel Pittman <daniel@puppetlabs.com>2011-04-15 15:07:01 -0700
commit0c60aa28d2d15e7e718792871af3350c3a1fa5c7 (patch)
treee42d8272ca303c9b88d91a96580b0cedd3b52116 /lib/puppet/parser/resource
parente945cea00512d33c3d9d262b8285896febf946a3 (diff)
maint: delete an empty describe block containing no tests.
Reviewed-By: Max Martin <max@puppetlabs.com>
Diffstat (limited to 'lib/puppet/parser/resource')
0 files changed, 0 insertions, 0 deletions
org/sssd/wiki/Releases#DING-LIBSReleases . To install all of the dependencies in Fedora before building sssd: yum install openldap-devel gettext libtool pcre-devel c-ares-devel \ dbus-devel libxslt docbook-style-xsl krb5-devel nspr-devel \ libxml2 pam-devel nss-devel libtevent python-devel \ libtevent-devel libtdb libtdb-devel libtalloc libtalloc-devel \ libldb libldb-devel popt-devel c-ares-devel check-devel \ doxygen libselinux-devel libsemanage-devel bind-utils libnl-devel \ gettext-devel glib2-devel ding-libs are available in Fedora 14 and later version: yum install libcollection-devel libdhash-devel libini_config-devel \ libpath_utils-devel libref_array-devel Some features, notably password caching, require the presence of a crypto library. The default, tested by SSSD upstream, is Mozilla NSS. An alternative crypto library can be selected during configure time using the --with-crypto switch. Please note that alternative crypto back ends may not provide all features - as of this writing, password obfuscation is only supported with the NSS back end. How to build: ~~~~~~~~~~~~~ From the root of the source, run: autoreconf -i -f && \ ./configure && \ make Optionally, parallel builds are possible with: autoreconf -i -f && \ mkdir parallelbuilddir && cd parallelbuilddir && \ ../configure && \ make Now you have to copy libnss_sss* into /lib (or /lib64) and add the 'sss' target to nsswitch.conf passwd database For pam copy pam_sss.so into /lib/security (or /lib64/security) and add pam_sss.so to your pam configuration. To use the pam_test_client from sss_client create the following file: /etc/pam.d/sss_test: auth required pam_sss.so account required pam_sss.so password required pam_sss.so session required pam_sss.so Now you can call pam_test_client: ./pam_test_client [auth|chau|acct|setc|open|clos] username@domain ~~~~~ Simo and Steve (Last updated for 1.5.2)