683d3632bc
Test: Build pass with build pkgs and build iso, and then build rpms for installer, update installer and rebuild iso again. And deploy multi-node test pass. Depends-On: https://review.openstack.org/628835/ Story: 2004522 Task: 28413 Change-Id: Iaba803124b9795df206646f6bc24c2862795bbdd Signed-off-by: Martin, Chen <haochuan.z.chen@intel.com>
26 lines
719 B
Diff
26 lines
719 B
Diff
From d14b48ec201b4f90042f6292d537d5af5d78c6a6 Mon Sep 17 00:00:00 2001
|
|
From: Don Penney <don.penney@windriver.com>
|
|
Date: Thu, 23 Nov 2017 16:43:58 -0500
|
|
Subject: [PATCH] Set default hostname to localhost
|
|
|
|
---
|
|
pyanaconda/network.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pyanaconda/network.py b/pyanaconda/network.py
|
|
index c6f7bb7..26c24a3 100644
|
|
--- a/pyanaconda/network.py
|
|
+++ b/pyanaconda/network.py
|
|
@@ -65,7 +65,7 @@ networkConfFile = "%s/network" % (sysconfigDir)
|
|
hostnameFile = "/etc/hostname"
|
|
ipv6ConfFile = "/etc/sysctl.d/anaconda.conf"
|
|
ifcfgLogFile = "/tmp/ifcfg.log"
|
|
-DEFAULT_HOSTNAME = "localhost.localdomain"
|
|
+DEFAULT_HOSTNAME = "localhost"
|
|
|
|
ifcfglog = None
|
|
|
|
--
|
|
1.8.3.1
|
|
|