summaryrefslogtreecommitdiffstats
path: root/perl-install/install/pkgs.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-04-18 17:08:53 +0000
committerThierry Vignaud <tv@mageia.org>2012-04-18 17:08:53 +0000
commitde37dcb9db2de7b7ff55ed0f77dee4c0f5b670ed (patch)
tree74ab0fb1844bd9bc6f4d3cd3192c5fe7852f261d /perl-install/install/pkgs.pm
parent096d8dafd536bbe4cd596f801a3773431b0fd4ec (diff)
downloaddrakx-backup-do-not-use-de37dcb9db2de7b7ff55ed0f77dee4c0f5b670ed.tar
drakx-backup-do-not-use-de37dcb9db2de7b7ff55ed0f77dee4c0f5b670ed.tar.gz
drakx-backup-do-not-use-de37dcb9db2de7b7ff55ed0f77dee4c0f5b670ed.tar.bz2
drakx-backup-do-not-use-de37dcb9db2de7b7ff55ed0f77dee4c0f5b670ed.tar.xz
drakx-backup-do-not-use-de37dcb9db2de7b7ff55ed0f77dee4c0f5b670ed.zip
(_install_raw::ask_for_bad_or_missing) offer to not ask again about missing packages
Diffstat (limited to 'perl-install/install/pkgs.pm')
-rw-r--r--perl-install/install/pkgs.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm
index 348201c10..77aaebf9c 100644
--- a/perl-install/install/pkgs.pm
+++ b/perl-install/install/pkgs.pm
@@ -870,6 +870,17 @@ sub _install_raw {
log::l($msg);
$::o->ask_yesorno($title, $msg);
},
+ ask_for_bad_or_missing => sub {
+ my ($_title, $msg) = @_;
+ log::l($msg);
+ state $do_not_ask;
+ state $answer;
+ return $answer if $do_not_ask;
+ $answer = $::o->ask_from_({ messages => $msg }, [
+ { val => \$do_not_ask, type => 'bool', text => N("Do not ask again"),
+ },
+ ]);
+ },
# Uneeded callbacks: success_summary
});