-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Set default hostname to 'dom0' - Exclude rd.neednet from bootargs - Drop workaround patches for missing url-lib
- Loading branch information
Showing
11 changed files
with
57 additions
and
133 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...all-instead-of-grubby-to-regenerate.patch → ...all-instead-of-grubby-to-regenerate.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 0 additions & 60 deletions
60
0019-fix-dracut-module-to-work-with-reduced-dependencies.patch
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ubes-dependencies-on-network-filesy.patch → ...ubes-dependencies-on-network-filesy.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 0 additions & 55 deletions
55
0021-Do-not-fail-during-initramfs-start-up-due-to-missing.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
0024-Generate-proper-extlinux.conf.patch → 0022-Generate-proper-extlinux.conf.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
0025-root_password-remove-ssh-options.patch → 0023-root_password-remove-ssh-options.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...existing-partitions-and-do-not-dete.patch → ...existing-partitions-and-do-not-dete.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...t-encrypted-partitioning-by-default.patch → ...t-encrypted-partitioning-by-default.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
From b4ebe20d79f5c73c7b9be6d2981c934b83dfb609 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Pierret=20=28fepitre=29?= | ||
<frederic.pierret@qubes-os.org> | ||
Date: Fri, 20 Dec 2019 10:23:25 +0100 | ||
Subject: [PATCH] Set default hostname to 'dom0' | ||
|
||
--- | ||
pyanaconda/modules/network/network.py | 2 +- | ||
pyanaconda/network.py | 2 +- | ||
2 files changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/pyanaconda/modules/network/network.py b/pyanaconda/modules/network/network.py | ||
index d5e348e01..75bfca096 100644 | ||
--- a/pyanaconda/modules/network/network.py | ||
+++ b/pyanaconda/modules/network/network.py | ||
@@ -62,7 +62,7 @@ class NetworkModule(KickstartModule): | ||
self._firewall_module = FirewallModule() | ||
|
||
self.hostname_changed = Signal() | ||
- self._hostname = "localhost.localdomain" | ||
+ self._hostname = "dom0" | ||
|
||
self.current_hostname_changed = Signal() | ||
self._hostname_service_proxy = None | ||
diff --git a/pyanaconda/network.py b/pyanaconda/network.py | ||
index cd97007d2..b91be3b4d 100644 | ||
--- a/pyanaconda/network.py | ||
+++ b/pyanaconda/network.py | ||
@@ -45,7 +45,7 @@ from pyanaconda.modules.common.structures.network import NetworkDeviceInfo | ||
from pyanaconda.anaconda_loggers import get_module_logger | ||
log = get_module_logger(__name__) | ||
|
||
-DEFAULT_HOSTNAME = "localhost.localdomain" | ||
+DEFAULT_HOSTNAME = "dom0" | ||
|
||
network_connected = None | ||
network_connected_condition = threading.Condition() | ||
-- | ||
2.21.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters