diff options
author | Anssi Hannula <anssi@mageia.org> | 2011-04-17 14:33:49 +0000 |
---|---|---|
committer | Anssi Hannula <anssi@mageia.org> | 2011-04-17 14:33:49 +0000 |
commit | 978f0bb73d45dfb4411cc28bfe3585477acdd0cc (patch) | |
tree | aedcff64061ba2e58f184b8d492d1c97e3f481fe /perl-install/standalone/service_harddrake_confirm | |
parent | d002efb5c6cae59da09da2371fb59c821e1c499f (diff) | |
download | drakx-978f0bb73d45dfb4411cc28bfe3585477acdd0cc.tar drakx-978f0bb73d45dfb4411cc28bfe3585477acdd0cc.tar.gz drakx-978f0bb73d45dfb4411cc28bfe3585477acdd0cc.tar.bz2 drakx-978f0bb73d45dfb4411cc28bfe3585477acdd0cc.tar.xz drakx-978f0bb73d45dfb4411cc28bfe3585477acdd0cc.zip |
service_harddrake: Factorize ask_with_timeout for a following commit.
Diffstat (limited to 'perl-install/standalone/service_harddrake_confirm')
-rwxr-xr-x | perl-install/standalone/service_harddrake_confirm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/standalone/service_harddrake_confirm b/perl-install/standalone/service_harddrake_confirm index 1528fd9bf..914f644f8 100755 --- a/perl-install/standalone/service_harddrake_confirm +++ b/perl-install/standalone/service_harddrake_confirm @@ -4,6 +4,5 @@ use common; use interactive; my $in = interactive->vnew; -my $res = $in->ask_okcancel(N("Hardware changes in \"%s\" class (%s seconds to answer)", $ARGV[0], $ARGV[1]), - $ARGV[2] . N("Do you want to run the appropriate config tool?"), 1); +my $res = $in->ask_okcancel($ARGV[0], $ARGV[1], 1); $in->exit($res); |