summaryrefslogtreecommitdiff
path: root/libre/systemd/0005-FSDG-systemd-resolved-Fallback-hostname-to-gnu-linux.patch
blob: 3e230ad57dc6b815987dc08fdc277ea612d67e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
From 3219b6368eaa5c264d8d5ac1db0d6343abaaeb7f Mon Sep 17 00:00:00 2001
From: Luke Shumaker <lukeshu@parabola.nu>
Date: Wed, 25 May 2016 12:31:20 -0400
Subject: [PATCH 5/7] FSDG: systemd-resolved: Fallback hostname to "gnu-linux"
 instead of "linux"

---
 man/hostname.xml               | 2 +-
 src/resolve/resolved-manager.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/man/hostname.xml b/man/hostname.xml
index a3dae72fd9..6beca463ec 100644
--- a/man/hostname.xml
+++ b/man/hostname.xml
@@ -79,7 +79,7 @@
       <listitem><para>Otherwise, a fallback hostname configured at compilation time will be used
       (<literal>&FALLBACK_HOSTNAME;</literal>).</para></listitem>
 
-      <!-- what about the "linux" fallback fallback? -->
+      <!-- what about the "gnu-linux" fallback? -->
     </itemizedlist>
 
     <para>Effectively, the static hostname has higher priority than a transient hostname, which has higher
diff --git a/src/resolve/resolved-manager.c b/src/resolve/resolved-manager.c
index b52619e287..f380c23ec4 100644
--- a/src/resolve/resolved-manager.c
+++ b/src/resolve/resolved-manager.c
@@ -373,7 +373,7 @@ static int determine_hostnames(char **full_hostname, char **llmnr_hostname, char
 static char* fallback_hostname(void) {
 
         /* Determine the fall back hostname. For exposing this system to the outside world, we cannot have it
-         * to be "localhost" even if that's the default hostname. In this case, let's revert to "linux"
+         * to be "localhost" even if that's the default hostname. In this case, let's revert to "gnu-linux"
          * instead. */
 
         _cleanup_free_ char *n = get_default_hostname();
@@ -381,7 +381,7 @@ static char* fallback_hostname(void) {
                 return NULL;
 
         if (is_localhost(n))
-                return strdup("linux");
+                return strdup("gnu-linux");
 
         return TAKE_PTR(n);
 }
-- 
2.44.0