Add dhclient wrapper to fix an ld.so.cache issue with dhclient

This commit is contained in:
malachma 2020-09-14 18:55:49 +02:00
Родитель 6fdc2ab6b3
Коммит 4dfa691857
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -58,6 +58,8 @@ grub2-mkconfig -o /boot/grub2/grub.cfg
mv /sbin/dhclient /sbin/dhclient.org
cat > /sbin/dhclient <<EOF
#!/bin/bash
# This script got created by linux-alar-fki
# in order to fix an ld.so.cache issue that does the dhclient not to work properly
ldconfig
/sbin/dhclient.org
EOF