From 92aa5ba20b42551ab5d26db057dced01e72bf667 Mon Sep 17 00:00:00 2001 From: Ratan Gupta Date: Fri, 7 Sep 2018 15:09:36 +0530 Subject: nsswitch: Add LDAP lookup in passwd, group and shadow maps The Name Service Switch (NSS) configuration file (nsswitch.conf), is used by the GNU C Library to determine the sources from which to obtain name-service information in a range of categories, and in what order With the introduction of LDAP we have to add the LDAP as a source for the name service info for the various maps/database(passwd, group, shadow). (From meta-phosphor rev: 68f0934af8ebb0332e5075728d8006e4d846bd78) Change-Id: I0781da24c50278e439e953d595d275fbfc6bf48a Signed-off-by: Ratan Gupta Signed-off-by: Brad Bishop --- .../base-files/base-files/nsswitch_ldap.conf | 20 ++++++++++++++++++++ .../recipes-core/base-files/base-files_%.bbappend | 10 ++++++++++ 2 files changed, 30 insertions(+) create mode 100644 meta-phosphor/recipes-core/base-files/base-files/nsswitch_ldap.conf (limited to 'meta-phosphor/recipes-core/base-files') diff --git a/meta-phosphor/recipes-core/base-files/base-files/nsswitch_ldap.conf b/meta-phosphor/recipes-core/base-files/base-files/nsswitch_ldap.conf new file mode 100644 index 000000000..78141f644 --- /dev/null +++ b/meta-phosphor/recipes-core/base-files/base-files/nsswitch_ldap.conf @@ -0,0 +1,20 @@ +# /etc/nsswitch.conf +# +# Example configuration of GNU Name Service Switch functionality. +# If you have the `glibc-doc' and `info' packages installed, try: +# `info libc "Name Service Switch"' for information about this file. + +passwd: files ldap +group: files ldap +shadow: files ldap + +hosts: files dns +networks: files + +protocols: db files +services: db files +ethers: db files +rpc: db files + +netgroup: nis + diff --git a/meta-phosphor/recipes-core/base-files/base-files_%.bbappend b/meta-phosphor/recipes-core/base-files/base-files_%.bbappend index 5da4025f8..1dd38a40a 100644 --- a/meta-phosphor/recipes-core/base-files/base-files_%.bbappend +++ b/meta-phosphor/recipes-core/base-files/base-files_%.bbappend @@ -1,7 +1,17 @@ FILESEXTRAPATHS_prepend_df-obmc-ubi-fs := "${THISDIR}/${PN}/df-ubi:" +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" + RDEPENDS_${PN}_append_df-obmc-ubi-fs = " preinit-mounts" +SRC_URI += " \ + ${@bb.utils.contains('DISTRO_FEATURES', 'ldap', 'file://nsswitch_ldap.conf', '', d)}" + do_install_append() { + install -d ${D}/srv + + if [ "${@bb.utils.filter('DISTRO_FEATURES', 'ldap', d)}" ]; then + install -D -m 600 ${WORKDIR}/nsswitch_ldap.conf ${D}/${sysconfdir}/ + fi } -- cgit v1.2.3