99-systemd-resolved-link 266 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 #!/bin/sh [ -h /sbin/init ] || exit 0 [ -n "$GLOBAL_SYSTEMD_RESOLVED" ] || exit 0 if [ "$GLOBAL_SYSTEMD_RESOLVED" = stub ]; then ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf else ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf fi