summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorbfox <bfox>2001-08-02 16:41:00 +0000
committerbfox <bfox>2001-08-02 16:41:00 +0000
commit8ffcd020e3724390400e13fd26dc8a1cc79474e4 (patch)
tree6a82aa56dbc192c8e28fd424d865320ec5bb6f48 /dispatch.py
parent1f8224e105c5b39540f46a97c78ab9bba67e774c (diff)
downloadanaconda-8ffcd020e3724390400e13fd26dc8a1cc79474e4.tar.gz
anaconda-8ffcd020e3724390400e13fd26dc8a1cc79474e4.tar.xz
anaconda-8ffcd020e3724390400e13fd26dc8a1cc79474e4.zip
added an invisible step to allow the network screen to be skipped if no network devices are present
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dispatch.py b/dispatch.py
index 919445442..de18dfc9b 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -31,6 +31,7 @@ from flags import flags
from upgrade import upgradeFindPackages, upgradeMountFilesystems
from upgrade import upgradeSwapSuggestion, upgradeMigrateFind
from upgrade import findRootParts
+from network import networkDeviceCheck
# These are all of the install steps, in order. Note that upgrade and
# install steps are the same thing! Upgrades skip install steps, while
@@ -82,6 +83,7 @@ installSteps = [
"dir")),
("bootloader", ("dispatch", "id.bootloader", "id.fsset", "id.diskset")),
("bootloaderpassword", ("id.bootloader", "intf")),
+ ("networkdevicecheck", networkDeviceCheck, ("id.network", "dispatch")),
("network", ("id.network",)),
("firewall", ("id.network", "id.firewall")),
("languagesupport", ("id.langSupport",)),