Files
rpiGenImage/files/firstboot/41-create-resolv-symlink.sh

19 lines
569 B
Bash
Raw Normal View History

2025-10-26 18:06:53 +01:00
logger -t "rc.firstboot" "Creating /etc/resolv.conf symlink"
# Check if systemd resolve directory exists
if [ ! -d "/run/systemd/resolve" -a ! -e "/etc/resolv.conf" ] ; then
systemctl enable systemd-resolved.service
systemctl restart systemd-resolved.service
fi
# Create resolv.conf file if it does not exists
if [ ! -f "/run/systemd/resolve/resolv.conf" ] ; then
touch /run/systemd/resolve/resolv.conf
fi
# Create symlink to /etc/reolv.conf if not exists yet
if [ ! -e "/etc/resolv.conf" ] ; then
ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf
fi