summaryrefslogtreecommitdiffstats
path: root/rescue/guessmounts
diff options
context:
space:
mode:
Diffstat (limited to 'rescue/guessmounts')
-rwxr-xr-xrescue/guessmounts6
1 files changed, 5 insertions, 1 deletions
diff --git a/rescue/guessmounts b/rescue/guessmounts
index eb9617e15..27b920c9d 100755
--- a/rescue/guessmounts
+++ b/rescue/guessmounts
@@ -93,13 +93,17 @@ if (@roots) {
if (@roots == 1) {
$selected = first(@roots);
} else {
- print "\n\nWhich system do you want to rescue?\n";
+ print "\n\nWhich system do you want to rescue?\n0: Abort\n";
each_index { print $::i + 1, ": $_->{pretty_name}\n" } @roots;
my $res;
while ($res < 1 || $res > @roots) {
print "what is your choice (type the number of your selection or C^c to abort)?\n";
$res = <>;
chomp($res);
+ if ($res eq "0") {
+ print "Aborting\n";
+ exit(1);
+ }
}
$selected = $roots[$res-1];
}