[Netpass-devel] NetPass/install.d install-ipvs.sh,1.2,1.3
Brought to you by:
jeffmurphy
From: jeff m. <jef...@us...> - 2005-08-03 02:44:47
|
Update of /cvsroot/netpass/NetPass/install.d In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19022/install.d Modified Files: install-ipvs.sh Log Message: some bug fixes, resetport.pl re-write, appstarter completion, install/initd tweaks Index: install-ipvs.sh =================================================================== RCS file: /cvsroot/netpass/NetPass/install.d/install-ipvs.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- install-ipvs.sh 17 May 2005 02:57:36 -0000 1.2 +++ install-ipvs.sh 3 Aug 2005 02:44:38 -0000 1.3 @@ -22,7 +22,8 @@ mkdir -p /var/cache/cpan/build /var/cache/cpan/sources unset DISPLAY up2date --nox -i glib-devel openssl-devel libnet perl-CPAN -cp Config.pm /usr/lib/perl5/5.8.0/CPAN/Config.pm +# 5.8.5 = RH4 +cp Config.pm /usr/lib/perl5/5.8.5/CPAN/Config.pm cat <<EOF Using CPAN to install some perl modules. If CPAN asks whether @@ -31,8 +32,11 @@ EOF sleep 5 -echo "install Bundle::CPAN" | perl -MCPAN -e shell -echo "install Mail::IMAPClient" | perl -MCPAN -e shell +for i in Bundle::CPAN Mail::IMAPClient ExtUtils::AutoInstall Convert::ASN1 Authen::SASL \ +Digest::MD5 URI::ldap IO::Socket::SSL XML::SAX::Base MIME::Base64 ; do + echo "install " $i | perl -MCPAN -e shell +done + echo "force install Net::SSLeay" | perl -MCPAN -e shell echo "install Net::LDAP" | perl -MCPAN -e shell |