###########################################
package Distro::Plugin::Fedora;
###########################################
use Mouse;
extends 'Distro::Plugin::FTP';

sub list {
  my( $self, $query ) = @_;

  my $listing = $self->dirlist( 
    "ftp://ftp-stud.hs-esslingen.de/pub/" .
    "fedora/linux//updates/17/x86_64" );

  my @result = grep {
         # match anywhere, not only front
       $_->{ pkg } =~ /$query/
  } @$listing;

  return \@result;
}

1;
