From 5d8364b3c5e06b8dbda75c07fdb707148dfd1656 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Thu, 16 Jan 2014 20:20:08 +0100 Subject: [PATCH] networkd: resolv.conf - extend the comment a bit --- src/network/networkd-manager.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/network/networkd-manager.c b/src/network/networkd-manager.c index 3b542149c..27f806aab 100644 --- a/src/network/networkd-manager.c +++ b/src/network/networkd-manager.c @@ -334,7 +334,11 @@ int manager_update_resolv_conf(Manager *m) { fchmod(fileno(f), 0644); - fputs("# This file is managed by systemd-networkd(8). Do not edit.\n", f); + fputs("# This file is managed by systemd-networkd(8). Do not edit.\n#\n", f); + fputs("# Third party programs must not access this file directly, but\n", f); + fputs("# only through the symlink at /etc/resolv.conf. To manage your\n", f); + fputs("# own static resolv.conf(5), replace the symlink by a static\n", f); + fputs("# file at /etc/resolv.conf.\n\n", f); HASHMAP_FOREACH(link, m->links, i) { if (link->dhcp) { -- 2.30.2