def runShell(screen = None, msg=""): if screen: screen.suspend() print if msg: print (msg) print(_("When finished please exit from the shell and your " "system will reboot.")) print proc = None if os.path.exists("/usr/bin/firstaidkit-qs"): proc = subprocess.Popen(["/usr/bin/firstaidkit-qs"]) proc.wait() if proc is None or proc.returncode!=0: if os.path.exists("/bin/bash"): iutil.execConsole() else: print(_("Unable to find /bin/sh to execute! Not starting shell")) time.sleep(5) if screen: screen.finish()
def spawnShell(screen): screen.suspend() print("\n\nType <exit> to return to the install program.\n") if os.path.exists("/bin/sh"): iutil.execConsole() else: print("Unable to find /bin/sh to execute! Not starting shell") time.sleep(5) screen.resume()
def runShell(screen = None, msg=""): if screen: screen.suspend() print if msg: print (msg) print _("When finished please exit from the shell and your " "system will reboot.") print if os.path.exists("/bin/sh"): iutil.execConsole() else: print "Unable to find /bin/sh to execute! Not starting shell" time.sleep(5) if screen: screen.finish()
def runShell(screen=None, msg=""): if screen: screen.suspend() print if msg: print(msg) print _("When finished please exit from the shell and your " "system will reboot.") print if os.path.exists("/bin/sh"): iutil.execConsole() else: print "Unable to find /bin/sh to execute! Not starting shell" time.sleep(5) if screen: screen.finish()