summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartin Pitt <martin.pitt@ubuntu.com>2015-02-02 00:19:31 +0100
committerHarald Hoyer <harald@redhat.com>2015-02-03 09:50:45 +0100
commitcffae62bcb6912fbaf1b7b282d9d170c9d308897 (patch)
tree9af0cd3780a29264a5702f7efe10ce297f3084ff /test
parent53d90f9582f96208b3674da823ad1a3d2c3b1aa4 (diff)
tests: install all required libnss modules
Don't assume "files" for everything in nsswitch. Instead, ask "getent passwd" about which libnss modules it dlopen()s, and install these.
Diffstat (limited to 'test')
-rw-r--r--test/test-functions5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test-functions b/test/test-functions
index 42c954d56..34af32a79 100644
--- a/test/test-functions
+++ b/test/test-functions
@@ -241,7 +241,10 @@ install_debug_tools() {
install_libnss() {
# install libnss_files for login
- inst_libdir_file "libnss_files*"
+ NSS_LIBS=$(LD_DEBUG=files getent passwd 2>&1 >/dev/null |sed -n '/calling init: .*libnss_/ {s!^.* /!/!; p}')
+ for l in $NSS_LIBS; do
+ dracut_install $l
+ done
}
install_dbus() {