anaconda: set default hostname to 'dom0'

This commit is contained in:
Marek Marczykowski-Górecki 2014-04-08 06:08:08 +02:00
parent 3e9ec61613
commit 5a363bf786

View File

@ -57,7 +57,7 @@ networkConfFile = "%s/network" % (sysconfigDir)
hostnameFile = "/etc/hostname"
ipv6ConfFile = "/etc/sysctl.d/anaconda.conf"
ifcfgLogFile = "/tmp/ifcfg.log"
DEFAULT_HOSTNAME = "localhost.localdomain"
DEFAULT_HOSTNAME = "dom0"
# part of a valid hostname between two periods (cannot start nor end with '-')
# for more info about '(?!-)' and '(?<!-)' see 're' module documentation