You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-dev@perl.apache.org by Stas Bekman <st...@stason.org> on 2005/04/11 21:34:41 UTC

Re: svn commit: r160938 - perl/modperl/docs/trunk/src/docs/2.0/rename.pod

randyk@apache.org wrote:
> Author: randyk
> Date: Mon Apr 11 12:19:48 2005
> New Revision: 160938
> 
> URL: http://svn.apache.org/viewcvs?view=rev&rev=160938
> Log:
> suggest to check for the existence of 3rd-party modules before using 
> the suggested method to remove a prior mod_perl-2 installation.
> 
> Modified:
>     perl/modperl/docs/trunk/src/docs/2.0/rename.pod
> 
> Modified: perl/modperl/docs/trunk/src/docs/2.0/rename.pod
> URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/rename.pod?view=diff&r1=160937&r2=160938
> ==============================================================================
> --- perl/modperl/docs/trunk/src/docs/2.0/rename.pod (original)
> +++ perl/modperl/docs/trunk/src/docs/2.0/rename.pod Mon Apr 11 12:19:48 2005
> @@ -93,12 +93,20 @@
>  Before installing mod_perl 2, either remove an earlier
>  mod_perl 2 installation (prior to 1.999022), or else choose
>  to install the new version in a different area. To remove
> -a prior installation of mod_perl 2, one can do, on Unix,
> +enough of a prior installation of mod_perl 2 in order to
> +satisfy this requirement, one can do, on Unix,
>  
>    % find /usr/lib/perl5 -name 'Apache2*' -exec rm -rf {} \;
>  
>  where F</usr/lib/perl5> is the top-level root of your Perl tree.
> -Win32 ppm users can do, within the ppm shell,
> +Before doing this, you may want to verify that there are no
> +3rd-party modules within this tree that you might like to
> +keep:
> +
> +  % find /opt/lib/perl5 -name 'Apache2*' -exec ls -lR {} \;
> +
> +will list the files under this tree. Win32 ppm users can do, 
> +within the ppm shell,

what difference would it make? None of the 3rd party modules using 
Apache2.pm and Apache:: namespace will work anyway. Just nuke it all.


-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org


Re: svn commit: r160938 - perl/modperl/docs/trunk/src/docs/2.0/rename.pod

Posted by Geoffrey Young <ge...@modperlcookbook.org>.
> what difference would it make? None of the 3rd party modules using
> Apache2.pm and Apache:: namespace will work anyway. Just nuke it all.
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org


Re: svn commit: r160938 - perl/modperl/docs/trunk/src/docs/2.0/rename.pod

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Mon, 11 Apr 2005, Stas Bekman wrote:

> Randy Kobes wrote:
> > On Mon, 11 Apr 2005, Stas Bekman wrote:
> >>randyk@apache.org wrote:
> > [ .. ]
> >
> >>>+Before doing this, you may want to verify that there are no
> >>>+3rd-party modules within this tree that you might like to
> >>>+keep:
> >>>+
> >>>+  % find /opt/lib/perl5 -name 'Apache2*' -exec ls -lR {} \;
> >>>+
> >>>+will list the files under this tree. Win32 ppm users can do,
> >>>+within the ppm shell,
> >>
> >>what difference would it make? None of the 3rd party
> >>modules using Apache2.pm and Apache:: namespace will work
> >>anyway. Just nuke it all.
> >
> >
> > That's true that they won't work, but I thought there may be
> > someone who might have some module under that area that they
> > would like to save (eg, some locally modified version of a
> > 3rd party CPAN module). So it might not hurt to check first.
>
> Makes sense Randy. But you probably want to rephrase it then to include
> the explanation above. Since people do want to nuke 3rd party modules,
> built with RC3 or earlier, unless they have some custom work in there

Good idea - I'll do that. Thanks.

-- 
best regards,
randy


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org


Re: svn commit: r160938 - perl/modperl/docs/trunk/src/docs/2.0/rename.pod

Posted by Stas Bekman <st...@stason.org>.
Randy Kobes wrote:
> On Mon, 11 Apr 2005, Stas Bekman wrote:
> 
> 
>>randyk@apache.org wrote:
> 
> [ .. ]
> 
>>>+Before doing this, you may want to verify that there are no
>>>+3rd-party modules within this tree that you might like to
>>>+keep:
>>>+
>>>+  % find /opt/lib/perl5 -name 'Apache2*' -exec ls -lR {} \;
>>>+
>>>+will list the files under this tree. Win32 ppm users can do,
>>>+within the ppm shell,
>>
>>what difference would it make? None of the 3rd party
>>modules using Apache2.pm and Apache:: namespace will work
>>anyway. Just nuke it all.
> 
> 
> That's true that they won't work, but I thought there may be
> someone who might have some module under that area that they
> would like to save (eg, some locally modified version of a
> 3rd party CPAN module). So it might not hurt to check first.

Makes sense Randy. But you probably want to rephrase it then to include 
the explanation above. Since people do want to nuke 3rd party modules, 
built with RC3 or earlier, unless they have some custom work in there

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org


Re: svn commit: r160938 - perl/modperl/docs/trunk/src/docs/2.0/rename.pod

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Mon, 11 Apr 2005, Stas Bekman wrote:

> randyk@apache.org wrote:
[ .. ]
> > +Before doing this, you may want to verify that there are no
> > +3rd-party modules within this tree that you might like to
> > +keep:
> > +
> > +  % find /opt/lib/perl5 -name 'Apache2*' -exec ls -lR {} \;
> > +
> > +will list the files under this tree. Win32 ppm users can do,
> > +within the ppm shell,
>
> what difference would it make? None of the 3rd party
> modules using Apache2.pm and Apache:: namespace will work
> anyway. Just nuke it all.

That's true that they won't work, but I thought there may be
someone who might have some module under that area that they
would like to save (eg, some locally modified version of a
3rd party CPAN module). So it might not hurt to check first.

-- 
best regards,
randy

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org