summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-02-24 23:59:56 +0000
committerJeremy Katz <katzj@redhat.com>2004-02-24 23:59:56 +0000
commit55b4aaa461641837dedfa4b57beaceb55f8d7058 (patch)
tree6bee916dda14a627a8e6310b813aee371b1d6c31 /dispatch.py
parentcdde4a471eb2f4b9468e7d98e6f0ea5da09f4c07 (diff)
downloadanaconda-55b4aaa461641837dedfa4b57beaceb55f8d7058.tar.gz
anaconda-55b4aaa461641837dedfa4b57beaceb55f8d7058.tar.xz
anaconda-55b4aaa461641837dedfa4b57beaceb55f8d7058.zip
add a new step for setting the file contexts so that it can be after the
boot loader is installed. move to using my function in isys instead of calling setfiles. have to fork and chroot for the actual run so that the regexes match :/
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 8383e137e..dbe2a6ff3 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -28,6 +28,7 @@ from packages import firstbootConfiguration
from packages import betaNagScreen
from packages import selectLanguageSupportGroups
from packages import setupTimezone
+from packages import setFileCons
from partitioning import partitionMethodSetup, partitionObjectsInitialize
from partitioning import partitioningComplete
from floppy import makeBootdisk
@@ -151,6 +152,7 @@ installSteps = [
"id.desktop", "id.grpset", "id.instClass", "instPath")),
("writexconfig", writeXConfiguration, ("id", "instPath")),
("writeksconfig", writeKSConfiguration, ("id", "instPath")),
+ ("setfilecon", setFileCons, ("instPath",)),
("dopostaction", doPostAction, ("id", "instPath")),
("methodcomplete", doMethodComplete, ("method",)),
("complete", ()),