summaryrefslogtreecommitdiffstats
path: root/pyanaconda/ui/tui/spokes/storage.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyanaconda/ui/tui/spokes/storage.py')
-rw-r--r--pyanaconda/ui/tui/spokes/storage.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pyanaconda/ui/tui/spokes/storage.py b/pyanaconda/ui/tui/spokes/storage.py
index 80e309400..58428fcc3 100644
--- a/pyanaconda/ui/tui/spokes/storage.py
+++ b/pyanaconda/ui/tui/spokes/storage.py
@@ -127,7 +127,10 @@ class StorageSpoke(NormalTUISpoke):
def status(self):
""" A short string describing the current status of storage setup. """
msg = _("No disks selected")
- if self.data.ignoredisk.onlyuse:
+
+ if flags.automatedInstall and not self.storage.rootDevice:
+ return msg
+ elif self.data.ignoredisk.onlyuse:
msg = P_(("%d disk selected"),
("%d disks selected"),
len(self.data.ignoredisk.onlyuse)) % len(self.data.ignoredisk.onlyuse)