Home | Wiki | OI 1.x Docs | OI 2.x Docs |
OpenInteract2::Manage::Website::InstallPackage - Install a package distribution to a website
#!/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"; }
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.
In addition to the default entries, each status message includes:
Package file installed
Name of package installed
Version of package installed
Copyright (c) 2002-2003 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.
Chris Winters <chris@cwinters.com>
Generated from the OpenInteract 1.99_03 source.