blob: c1893fe99134996d7ff792650f3a710676a22e12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package standalone; # $Id$
$::isStandalone = 1;
sub pkgs_install {
my ($in, @l) = @_;
$in->suspend;
system('urpmi --auto --best-output ' . join(' ', @l));
$in->resume;
}
1;
|