summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorRadek Vykydal <rvykydal@redhat.com>2011-08-05 13:55:28 +0200
committerRadek Vykydal <rvykydal@redhat.com>2011-10-05 14:55:51 +0200
commitb3394593e521ffd1dc051e7ff330e99af903d420 (patch)
tree1e47a35a5e9ce8f485df539d20c63a5d32fc004c /pyanaconda/installclass.py
parent48573f8d702a1ec9e5413ad701a7c7715270d730 (diff)
downloadanaconda-b3394593e521ffd1dc051e7ff330e99af903d420.tar.gz
anaconda-b3394593e521ffd1dc051e7ff330e99af903d420.tar.xz
anaconda-b3394593e521ffd1dc051e7ff330e99af903d420.zip
Default to an active network device after reboot on Fedora (ONBOOT) (#498207)
If no device was activated during install (e.g. DVD install), set ONBOOT=yes for first wired device having link found. (Which means the device will be brought up after system boot).
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 4c599d17d..0d784f291 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -211,6 +211,9 @@ class BaseInstallClass(object):
return self.productMatches(oldprod) and self.versionMatches(oldver) and archesEq(arch, productArch)
+ def setNetworkOnbootDefault(self, network):
+ pass
+
def __init__(self):
pass