summaryrefslogtreecommitdiff
path: root/src/resolve
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-25 12:31:20 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-25 12:38:25 -0400
commit71b8c10050db1a16402e0600c9921b012c908b44 (patch)
tree49cb12222f7a0131aaf8580d51915fa08c0a34c6 /src/resolve
parent6f4e352372876053efb168e6dc9e74a57c8d6c2e (diff)
FSDG: systemd-resolved: Default to hostname "gnu-linux" instead of "linux"
Diffstat (limited to 'src/resolve')
-rw-r--r--src/resolve/resolved-manager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resolve/resolved-manager.c b/src/resolve/resolved-manager.c
index 7f9073448a..e82c6ec563 100644
--- a/src/resolve/resolved-manager.c
+++ b/src/resolve/resolved-manager.c
@@ -429,12 +429,12 @@ static int manager_watch_hostname(Manager *m) {
r = determine_hostname(&m->llmnr_hostname, &m->mdns_hostname);
if (r < 0) {
- log_info("Defaulting to hostname 'linux'.");
- m->llmnr_hostname = strdup("linux");
+ log_info("Defaulting to hostname 'gnu-linux'.");
+ m->llmnr_hostname = strdup("gnu-linux");
if (!m->llmnr_hostname)
return log_oom();
- m->mdns_hostname = strdup("linux.local");
+ m->mdns_hostname = strdup("gnu-linux.local");
if (!m->mdns_hostname)
return log_oom();
} else