diff options
author | Harald Hoyer <harald@redhat.com> | 2015-02-03 10:45:25 +0100 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2015-02-03 10:46:57 +0100 |
commit | 99877b7e3782a51b31bf191825f0335500f52fe5 (patch) | |
tree | 5af79e97ca61af5c1bdd8d88e69e56eed4d35364 /test | |
parent | 7d023341c765c205068e33d23d63a4000ec211df (diff) | |
download | systemd-99877b7e3782a51b31bf191825f0335500f52fe5.tar.gz |
test-functions:install_libnss() call dracut_install with all $NSS_LIBS
dracut_install() can cope with more than one file
Diffstat (limited to 'test')
-rw-r--r-- | test/test-functions | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test-functions b/test/test-functions index b9468a458f..368e7a1e52 100644 --- a/test/test-functions +++ b/test/test-functions @@ -244,9 +244,7 @@ install_debug_tools() { install_libnss() { # install libnss_files for login 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 + dracut_install $NSS_LIBS } install_dbus() { |