diff options
Diffstat (limited to 'recipes-connectivity/networkd-dhcp-conf/files/resolvconf-clean')
-rw-r--r-- | recipes-connectivity/networkd-dhcp-conf/files/resolvconf-clean | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes-connectivity/networkd-dhcp-conf/files/resolvconf-clean b/recipes-connectivity/networkd-dhcp-conf/files/resolvconf-clean new file mode 100644 index 0000000..89c7e90 --- /dev/null +++ b/recipes-connectivity/networkd-dhcp-conf/files/resolvconf-clean | |||
@@ -0,0 +1,14 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | set -e | ||
4 | |||
5 | if [ ! -L /etc/resolv.conf ]; then | ||
6 | exit 0 | ||
7 | fi | ||
8 | |||
9 | # 'readlink -f' will fail if the symlink doesn't resolve to an existing path | ||
10 | if readlink /etc/resolv.conf | grep -q connman; then | ||
11 | echo "Replacing resolv.conf symlink: $(readlink /etc/resolv.conf) to /etc/resolv-conf.systemd" | ||
12 | rm /etc/resolv.conf | ||
13 | ln -s /etc/resolv-conf.systemd /etc/resolv.conf | ||
14 | fi | ||