From d0f91512d9ca6d361d8a4a387094c48aab00e111 Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Tue, 19 Apr 2016 15:10:50 +0200 Subject: fix: ENABLE_CRYPTFS -> UBOOT, SPLITFS, EXPANDROOT - cleanup --- files/firstboot/25-create-resolv-symlink.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 files/firstboot/25-create-resolv-symlink.sh (limited to 'files/firstboot/25-create-resolv-symlink.sh') diff --git a/files/firstboot/25-create-resolv-symlink.sh b/files/firstboot/25-create-resolv-symlink.sh new file mode 100644 index 0000000..8a3f00b --- /dev/null +++ b/files/firstboot/25-create-resolv-symlink.sh @@ -0,0 +1,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 -- cgit v1.2.3