diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-22 03:21:33 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-22 03:21:33 +0000 |
commit | bd6e20f9d1a6d961c80fccaeef807193d71e8691 (patch) | |
tree | ed58dd17aba755f9e14a4ee96349e8acf8253ce5 /kickstart.py | |
parent | 642b989fc1c5e0416559a83878c13db9f5b13a53 (diff) | |
download | anaconda-bd6e20f9d1a6d961c80fccaeef807193d71e8691.tar.gz anaconda-bd6e20f9d1a6d961c80fccaeef807193d71e8691.tar.xz anaconda-bd6e20f9d1a6d961c80fccaeef807193d71e8691.zip |
check the installclass in doAutoPartition so that we don't raise dialogs
during kickstart for warnings and exit if there's an error partitioning
Diffstat (limited to 'kickstart.py')
-rw-r--r-- | kickstart.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py index 1693f5bda..d5c56054f 100644 --- a/kickstart.py +++ b/kickstart.py @@ -43,6 +43,8 @@ class Script: os.unlink(path) class KickstartBase(BaseInstallClass): + name = "kickstart" + def postAction(self, rootPath, serial): for script in self.postScripts: script.run(rootPath, serial) |