The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

OpenInteract2::Manage::Website::ListPackages - List packages installed to a website

SYNOPSIS

#!/usr/bin/perl

use strict;
use OpenInteract2::Manage;

my $website_dir = '/home/httpd/mysite';
my $task = OpenInteract2::Manage->new(
                     'list_packages', { website_dir => $website_dir } );
my @status = $task->execute;
foreach my $s ( @status ) {
    print "Package [[$s->{name}-$s->{version}]]\n",
          "Installed on:  $s->{install_date}\n",
          "Directory:     $s->{directory}\n";
}

DESCRIPTION

Task to list all packages installed to a website. Note that this only displays the current version of each package, not all old versions.

STATUS MESSAGES

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

name

Name of the package

version

Version of the package

install_date

Date the package was installed

directory

Full path to package

BUGS

None known.

TO DO

Nothing known.

COPYRIGHT

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.

AUTHORS

Chris Winters <chris@cwinters.com>