Skip to content

Commit

Permalink
Also search for libnss_*.so files in /usr/lib
Browse files Browse the repository at this point in the history
The libnss_*.so were moved from /lib to /usr/lib and were not found any
more (breaking resolving the FQDN with "hostname -f").

Therefore also search for libnss_*.so files in /usr/lib.

Closes: #930419
Signed-off-by: Benjamin Drung <benjamin.drung@profitbricks.com>
  • Loading branch information
bdrung committed Jun 12, 2019
1 parent 9188c08 commit f18a282
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/initramfs-tools/live.hook
Expand Up @@ -236,11 +236,11 @@ fi

[ "${QUIET}" ] || echo -n " dns"

# /lib/libnss_dns.so.*:a DNS
# /lib/libnss_files.so.*: /etc/hosts and /etc/passwd
# /lib/libnss_compat.so.*: /etc/passwd
# libnss_dns.so.*: DNS
# libnss_files.so.*: /etc/hosts and /etc/passwd
# libnss_compat.so.*: /etc/passwd

for _SHLIB in $(find /lib -name 'libnss_dns.so.*' -o -name 'libnss_files.so.*')
for _SHLIB in $(find /lib /usr/lib -name 'libnss_dns.so.*' -o -name 'libnss_files.so.*')
do
copy_exec "${_SHLIB}"
done
Expand Down

0 comments on commit f18a282

Please sign in to comment.