The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

OpenInteract2::Manage::Website::InstallPackage - Install a package distribution to a website

SYNOPSIS

 #!/usr/bin/perl
 
 use strict;
 use OpenInteract2::Manage;
 
 my $package_file = '/home/me/mypkg-1.11.zip';
 my $website_dir  = '/home/httpd/testsite';
 my $task = OpenInteract2::Manage->new(
     'install_package', { package_file => $package_file,
                          website_dir  => $website_dir });
 my ( $status ) = $task->execute;
 print "Action:    $s->{action}\n",
       "Status OK? $s->{is_ok}\n",
       "Package:   $s->{package_name} $s->{package_version}\n",
       "$s->{message}\n";
 }

DESCRIPTION

Installs a package from a distribution to a website. It does not install data structures, data, security information, or anything else. See the 'install_sql*' tasks for that.

STATUS MESSAGES

In addition to the default entries, each status message includes:

filename

Package file installed

package

Name of package installed

version

Version of package installed

COPYRIGHT

Copyright (c) 2002-2004 Chris Winters. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHORS

Chris Winters <chris@cwinters.com>