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.pm16
1 files changed, 0 insertions, 16 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
deleted file mode 100644
index 2b403d567..000000000
--- a/perl-install/standalone.pm
+++ /dev/null
@@ -1,16 +0,0 @@
-package standalone; # $Id$
-
-$::isStandalone = 1;
-
-$ENV{SHARE_PATH} ||= "/usr/share";
-
-
-sub pkgs_install {
- my ($in, @l) = @_;
- $in->suspend;
- my $ret = system('urpmi --auto --best-output ' . join(' ', @l));
- $in->resume;
- $ret;
-}
-
-1;