summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-03-12 15:46:04 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-03-12 15:46:04 +0000
commita32f0e2dad283f2c1a7457c6284cc12a3b648f9e (patch)
treeb8dca7dba82fb0dbc222ff795a9792646529a8eb /perl-install
parent4d18401058c0bfa2ae0dfab92539c8bd9759bcba (diff)
downloaddrakx-backup-do-not-use-a32f0e2dad283f2c1a7457c6284cc12a3b648f9e.tar
drakx-backup-do-not-use-a32f0e2dad283f2c1a7457c6284cc12a3b648f9e.tar.gz
drakx-backup-do-not-use-a32f0e2dad283f2c1a7457c6284cc12a3b648f9e.tar.bz2
drakx-backup-do-not-use-a32f0e2dad283f2c1a7457c6284cc12a3b648f9e.tar.xz
drakx-backup-do-not-use-a32f0e2dad283f2c1a7457c6284cc12a3b648f9e.zip
adapt naughtyServers for 8.2
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/pkgs.pm34
1 files changed, 25 insertions, 9 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 4877dc390..74cd0b78f 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -1656,12 +1656,17 @@ sub selected_leaves {
sub naughtyServers {
my ($packages) = @_;
- my @old = qw(
+ my @old_81 = qw(
freeswan
-jabber
+);
+ my @old_82 = qw(
+vnc-server
+postgresql-server
+mon
);
# boa ??
- my @sure = qw(
+ my @new_80 = qw(
+jabber
FreeWnn
MySQL
am-utils
@@ -1674,12 +1679,10 @@ finger-server
imap
leafnode
lpr
-mon
ntp
openssh-server
pidentd
postfix
-postgresql-server
proftpd
rwall
rwho
@@ -1690,18 +1693,31 @@ ypbind
); # nfs-utils-clients portmap
# X server
- my @new = qw(
+ my @new_81 = qw(
apache-mod_perl
ftp-server-krb5
mcserv
-mysql
samba
telnet-server-krb5
-vnc-server
ypserv
);
- my @naughtyServers = (@new, @sure);
+ my @new_82 = qw(
+LPRng
+bind
+fam
+httpd-naat
+ibod
+inn
+netatalk
+nfs-utils
+rusers-server
+samba-swat
+tftp-server
+ucd-snmp
+);
+
+ my @naughtyServers = (@new_80, @new_81, @new_82);
grep {
my $p = packageByName($packages, $_);