summaryrefslogtreecommitdiff
path: root/libre/notsystemd/0005-FSDG-systemd-resolved-Default-to-hostname-gnu-linux-.patch
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-09-12 18:32:37 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-09-12 22:33:19 -0400
commit73934ba2e660313bde6f191d3de7632a41db6cc5 (patch)
tree9625c1003c63a357647ff7f75bf6b79bb07fa88e /libre/notsystemd/0005-FSDG-systemd-resolved-Default-to-hostname-gnu-linux-.patch
parent9ffca5fbaf194023453084db2907b58f50fe36a0 (diff)
downloadabslibre-73934ba2e660313bde6f191d3de7632a41db6cc5.tar.gz
abslibre-73934ba2e660313bde6f191d3de7632a41db6cc5.tar.bz2
abslibre-73934ba2e660313bde6f191d3de7632a41db6cc5.zip
libre/notsystemd: update to 233.1
Diffstat (limited to 'libre/notsystemd/0005-FSDG-systemd-resolved-Default-to-hostname-gnu-linux-.patch')
-rw-r--r--libre/notsystemd/0005-FSDG-systemd-resolved-Default-to-hostname-gnu-linux-.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/libre/notsystemd/0005-FSDG-systemd-resolved-Default-to-hostname-gnu-linux-.patch b/libre/notsystemd/0005-FSDG-systemd-resolved-Default-to-hostname-gnu-linux-.patch
deleted file mode 100644
index f5e9de8fc..000000000
--- a/libre/notsystemd/0005-FSDG-systemd-resolved-Default-to-hostname-gnu-linux-.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 71b8c10050db1a16402e0600c9921b012c908b44 Mon Sep 17 00:00:00 2001
-From: Luke Shumaker <lukeshu@sbcglobal.net>
-Date: Wed, 25 May 2016 12:31:20 -0400
-Subject: [PATCH 5/6] FSDG: systemd-resolved: Default to hostname "gnu-linux"
- instead of "linux"
-
----
- src/resolve/resolved-manager.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/resolve/resolved-manager.c b/src/resolve/resolved-manager.c
-index 7f90734..e82c6ec 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
---
-2.8.3
-