aboutsummaryrefslogtreecommitdiff
path: root/files/firstboot/24-create-resolv-symlink.sh
blob: 8a3f00b22e1cb98246399e3fb4d12c7439a68a04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
logger -t "rc.firstboot" "Creating /etc/resolv.conf symlink"

# Check if systemd resolve directory exists
if [ ! -d "/run/systemd/resolve" ] ; 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
ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf