summaryrefslogtreecommitdiff
path: root/src/network/networkd-manager.c
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2014-01-17 17:09:56 +0100
committerTom Gundersen <teg@jklm.no>2014-01-18 00:59:07 +0100
commitb2ad8a16eea1d125159fbd71974ea7c24dc0ab0a (patch)
tree681b15e9db9826818a09726f476bad9608cdbee0 /src/network/networkd-manager.c
parente4ecabd0a41fac73b62924856f5a9a8d7ef617ba (diff)
networkd: resolv.conf - reword comment
Take into account that users may want to use resolvconf(8), or similar. Also, avoid repeated calls to fputs().
Diffstat (limited to 'src/network/networkd-manager.c')
-rw-r--r--src/network/networkd-manager.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/network/networkd-manager.c b/src/network/networkd-manager.c
index 27f806aab..8eaf101df 100644
--- a/src/network/networkd-manager.c
+++ b/src/network/networkd-manager.c
@@ -334,11 +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#\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);
+ fputs("# This file is managed by systemd-networkd(8). Do not edit.\n#\n"
+ "# Third party programs must not access this file directly, but\n"
+ "# only through the symlink at /etc/resolv.conf. To manage\n"
+ "# resolv.conf(5) in a different way, replace the symlink by a\n"
+ "# static file or a different symlink.\n\n", f);
HASHMAP_FOREACH(link, m->links, i) {
if (link->dhcp) {