summaryrefslogtreecommitdiffstats
path: root/docs/interactive/wait_message
blob: 0caec44719d569b52902a0bbdb1a5161a61c5a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
# Yves Duret <yduret at mandrakesoft.com>
# license: GPL

use lib qw(/usr/lib/libDrakX);
use interactive;

my $in = 'interactive'->vnew(undef, 'default');
my $wait = $in->wait_message('wainting title', _("Moving files to the new partition"));
sleep(3);
$wait->set(_("Removing"));
sleep(3);
$in->exit(0);