#!perl -w # Copyright (c) 2006 bivio Software, Inc. All Rights Reserved. # # Visit http://www.bivio.biz for more info. # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 2.1 of the # License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; If not, you may get a copy from: # http://www.opensource.org/licenses/lgpl-license.html # # $Id: b-ftpd,v 1.2 2007/03/26 18:10:25 nagler Exp $ use strict; =head1 NAME b-fptd - calls Bivio::Ext::NetFTPServer::Server =head1 RELEASE SCOPE bOP =head1 SYNOPSIS b-fptd [options] command [args...] =head1 DESCRIPTION See L To run in background: b-ftpd -S To run in foreground: b-ftpd -s Uses the config file at /etc/ftpd.conf, ex. port: 8022 allow anonymous: 1 error log: /var/log/ftpd.error pidfile: /var/run/ftpd.pid passive port range: 8000-8088 enable syslog: 0 daemon: 1 =cut #=IMPORTS use Bivio::Ext::NetFTPServer::Server; #=VARIABLES Bivio::Ext::NetFTPServer::Server->run; =head1 SEE ALSO Bivio::Ext::NetFTPServer::Server =head1 COPYRIGHT Copyright (c) 2006 bivio Software, Inc. All Rights Reserved. Visit http://www.bivio.biz for more info. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; If not, you may get a copy from: http://www.opensource.org/licenses/lgpl-license.html =head1 VERSION $Id: b-ftpd,v 1.2 2007/03/26 18:10:25 nagler Exp $ =cut #Local Variables: #mode:cperl #End: