summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r--perl-install/standalone.pm21
1 files changed, 0 insertions, 21 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
deleted file mode 100644
index b74253f72..000000000
--- a/perl-install/standalone.pm
+++ /dev/null
@@ -1,21 +0,0 @@
-package standalone; # $Id$
-
-use c;
-
-$::isStandalone = 1;
-
-$ENV{SHARE_PATH} ||= "/usr/share";
-
-c::setlocale();
-c::bindtextdomain('libDrakX', "/usr/share/locale");
-
-
-sub pkgs_install {
- my ($in, @l) = @_;
- $in->suspend;
- my $ret = system('urpmi --auto --best-output ' . join(' ', @l));
- $in->resume;
- $ret;
-}
-
-1;