blob: eaf4549605e3b23ce041bea58d3f2d72a481c25a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/perl
use lib qw(/usr/lib/libDrakX);
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);
$in->exit($res);
|