summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py
index c00eff8b8..07167993c 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -752,6 +752,14 @@ class KickstartBase(BaseInstallClass):
where = args[0][1:]
args = isys.parseArgv(n)
+ script = ""
+ scriptInterp = "/bin/sh"
+ scriptLog = None
+ if where == "pre" or where == "traceback":
+ scriptChroot = 0
+ else:
+ scriptChroot = 1
+
argList = [ 'interpreter=' ]
if where == "post":
argList.append('nochroot')