summaryrefslogtreecommitdiffstats
path: root/pyanaconda/bootloader.py
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2012-10-10 22:00:43 -0700
committerJesse Keating <jkeating@redhat.com>2012-10-10 22:30:32 -0700
commit57099758870c074648418d73ac47c757ab6f0034 (patch)
treeba4b50b547f1fa97e678612d9737afa8763a5000 /pyanaconda/bootloader.py
parentd3533f5e8ded8f9621c2baba7d17b818698e2d1d (diff)
downloadanaconda-57099758870c074648418d73ac47c757ab6f0034.tar.gz
anaconda-57099758870c074648418d73ac47c757ab6f0034.tar.xz
anaconda-57099758870c074648418d73ac47c757ab6f0034.zip
Revive reipl (#860244)
reIPL used to be ran via dispatch, and would trigger either a reboot or a shut down. Now we'll run it as part of the s390 bootloader install. The message warning users to reipl themselves is somewhat lost here, something for another day perhaps. This at least gets the system working right.
Diffstat (limited to 'pyanaconda/bootloader.py')
-rw-r--r--pyanaconda/bootloader.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py
index 1333c751c..a8c969e51 100644
--- a/pyanaconda/bootloader.py
+++ b/pyanaconda/bootloader.py
@@ -2013,6 +2013,10 @@ class ZIPL(BootLoader):
if not self.stage1_name:
raise BootLoaderError("could not find IPL device")
+ # do the reipl
+ message = iutil.reIPL(self.stage1_name)
+ log.info(message)
+
class SILO(YabootSILOBase):
name = "SILO"
_config_file = "silo.conf"