summaryrefslogtreecommitdiffstats
path: root/perl-install/patch/patch-2006-auto_install_LDAP_auth.pl
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/patch/patch-2006-auto_install_LDAP_auth.pl')
-rw-r--r--perl-install/patch/patch-2006-auto_install_LDAP_auth.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/perl-install/patch/patch-2006-auto_install_LDAP_auth.pl b/perl-install/patch/patch-2006-auto_install_LDAP_auth.pl
deleted file mode 100644
index db719a905..000000000
--- a/perl-install/patch/patch-2006-auto_install_LDAP_auth.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-use do_pkgs;
-package do_pkgs_common;
-
-undef *ensure_are_installed;
-*ensure_are_installed = sub {
- my ($do, $pkgs, $b_auto) = @_;
-
- my @not_installed = difference2($pkgs, [ $do->are_installed(@$pkgs) ]) or return 1;
-
- if (!$do->install(@not_installed)) {
- $do->in->ask_warn(N("Error"), N("Could not install the %s package!", $not_installed[0]));
- return;
- }
- 1;
-};
-