Initial commit
This commit is contained in:
18
files/firstboot/41-create-resolv-symlink.sh
Normal file
18
files/firstboot/41-create-resolv-symlink.sh
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user