mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00
Standardise licence
GPL and GPL+1/Artistic licenses were used - standarise on GPL+1/Artisticc (same as perl) except for cscp (which I didnt write)
This commit is contained in:
parent
3c4f108233
commit
74809e7184
9 changed files with 95 additions and 103 deletions
12
Build.PL
12
Build.PL
|
@ -14,9 +14,11 @@ my $build = Module::Build->new(
|
|||
homepage => 'http://clusterssh.sourceforge.net/',
|
||||
},
|
||||
},
|
||||
module_name => 'App::ClusterSSH',
|
||||
license => 'perl',
|
||||
requires => {
|
||||
module_name => 'App::ClusterSSH',
|
||||
license => 'perl',
|
||||
dist_author => q{Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>},
|
||||
dist_version_from => 'lib/App/ClusterSSH.pm',
|
||||
requires => {
|
||||
'version' => '0',
|
||||
'Tk' => '800.022',
|
||||
'X11::Protocol' => '0.56',
|
||||
|
@ -27,7 +29,9 @@ my $build = Module::Build->new(
|
|||
'Test::Pod' => 0,
|
||||
'Test::Trap' => 0,
|
||||
},
|
||||
script_files => 'bin',
|
||||
add_to_cleanup => ['App-ClusterSSH-*'],
|
||||
create_makefile_pl => 'traditional',
|
||||
script_files => 'bin',
|
||||
);
|
||||
|
||||
$build->create_build_script;
|
||||
|
|
3
Changes
3
Changes
|
@ -1,6 +1,9 @@
|
|||
????-??-?? Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_05
|
||||
|
||||
* Tidy up pod for whatis errors
|
||||
* Amend copyright years and text to be consistent
|
||||
* Include missing buld prereq (Test::Trap)
|
||||
- Thanks to Tony Mancill for reporting these errors
|
||||
|
||||
2010-06-20 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_04
|
||||
|
||||
|
|
5
README
5
README
|
@ -60,5 +60,8 @@ COPYRIGHT AND LICENCE
|
|||
Copyright (C) 1999-2010 Duncan Ferguson
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the same terms as Perl itself.
|
||||
under the terms of either: the GNU General Public License as published
|
||||
by the Free Software Foundation; or the Artistic License.
|
||||
|
||||
See http://dev.perl.org/licenses/ for more information.
|
||||
|
||||
|
|
74
bin/cssh
74
bin/cssh
|
@ -1,55 +1,4 @@
|
|||
#!/usr/bin/perl
|
||||
# $Id$
|
||||
#
|
||||
# Script:
|
||||
# $RCSfile$
|
||||
#
|
||||
# Usage:
|
||||
# cssh [options] [hostnames] [...]
|
||||
#
|
||||
# Options:
|
||||
# see pod documentation
|
||||
#
|
||||
# Parameters:
|
||||
# hosts to open connection to
|
||||
#
|
||||
# Purpose:
|
||||
# Concurrently administer multiple remote servers
|
||||
#
|
||||
# Dependencies:
|
||||
# Perl 5.6.0
|
||||
# Tk 800.022
|
||||
#
|
||||
# Limitations:
|
||||
#
|
||||
# Enhancements:
|
||||
#
|
||||
# Notes:
|
||||
#
|
||||
# License:
|
||||
# This code is distributed under the terms of the GPL (GNU General Pulic
|
||||
# License).
|
||||
#
|
||||
# Copyright (C)
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by the
|
||||
# Free Software Foundation; either version 2 of the License, or any later
|
||||
# version.
|
||||
#
|
||||
# This program 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 General
|
||||
# Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
# Please see the full text of the licenses is in the file COPYING and also at
|
||||
# http://www.opensource.org/licenses/gpl-license.php
|
||||
#
|
||||
############################################################################
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
|
@ -781,16 +730,25 @@ L<Tk::overview>,
|
|||
L<X11::Protocol>,
|
||||
L<perl>
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson
|
||||
|
||||
=head1 CREDITS
|
||||
|
||||
clusterssh is distributed under the GNU public license. See the file
|
||||
F<LICENSE> for details.
|
||||
|
||||
A web site for comments, requests, bug reports and bug fixes/patches is
|
||||
available at L<http://clusterssh.sourceforge.net/>
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
||||
|
||||
=head1 LICENSE AND COPYRIGHT
|
||||
|
||||
Copyright 1999-2010 Duncan Ferguson.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of either: the GNU General Public License as published
|
||||
by the Free Software Foundation; or the Artistic License.
|
||||
|
||||
See http://dev.perl.org/licenses/ for more information.
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
|
|
|
@ -2211,15 +2211,25 @@ sub run {
|
|||
|
||||
__END__
|
||||
|
||||
=pod
|
||||
|
||||
=head1 NAME
|
||||
|
||||
App::ClusterSSH - Main module
|
||||
App::ClusterSSH - A container for functions of the ClusterSSH programs
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
=head1 FUNCTIONS
|
||||
There is nothing in this module for public consumption. See documentation
|
||||
for F<cssh>, F<crsh>, F<ctelnet>, or F<cscp> instead.
|
||||
|
||||
These functions are listed here to tidy up Pod::Coverage test reports but
|
||||
=head1 DESCRIPTION
|
||||
|
||||
THis is the core for App::ClusterSSH. You should probably look at L<cssh>
|
||||
instead.
|
||||
|
||||
=head1 SUBROUTINES/METHODS
|
||||
|
||||
These methods are listed here to tidy up Pod::Coverage test reports but
|
||||
will most likely be moved into other modules. There are some notes within
|
||||
the code until this time.
|
||||
|
||||
|
@ -2315,10 +2325,6 @@ the code until this time.
|
|||
|
||||
=back
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
||||
|
||||
=head1 BUGS
|
||||
|
||||
Please report any bugs or feature requests to C<bug-app-clusterssh at rt.cpan.org>, or through
|
||||
|
@ -2355,12 +2361,22 @@ L<http://search.cpan.org/dist/App-ClusterSSH/>
|
|||
|
||||
=head1 ACKNOWLEDGEMENTS
|
||||
|
||||
Please see the THANKS file from the original distribution.
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
||||
|
||||
=head1 COPYRIGHT & LICENSE
|
||||
|
||||
Copyright 1999-2010 Duncan Ferguson, all rights reserved.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the same terms as Perl itself.
|
||||
under the terms of either: the GNU General Public License as published
|
||||
by the Free Software Foundation; or the Artistic License.
|
||||
|
||||
See http://dev.perl.org/licenses/ for more information.
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
|
|
|
@ -181,16 +181,18 @@ Output text on STDOUT.
|
|||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>)
|
||||
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
||||
|
||||
=head1 LICENSE AND COPYRIGHT
|
||||
|
||||
Copyright (c) 1999-2010 Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>).
|
||||
All rights reserved
|
||||
Copyright 1999-2010 Duncan Ferguson.
|
||||
|
||||
This module is free software; you can redistribute it and/or
|
||||
modify it under the same terms as Perl itself. See L<perlartistic>.
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of either: the GNU General Public License as published
|
||||
by the Free Software Foundation; or the Artistic License.
|
||||
|
||||
This program 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 http://dev.perl.org/licenses/ for more information.
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
|
|
|
@ -331,16 +331,18 @@ Use brackets to avoid seeing warning.
|
|||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>)
|
||||
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
||||
|
||||
=head1 LICENSE AND COPYRIGHT
|
||||
|
||||
Copyright (c) 1999-2010 Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>).
|
||||
All rights reserved
|
||||
Copyright 1999-2010 Duncan Ferguson.
|
||||
|
||||
This module is free software; you can redistribute it and/or
|
||||
modify it under the same terms as Perl itself. See L<perlartistic>.
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of either: the GNU General Public License as published
|
||||
by the Free Software Foundation; or the Artistic License.
|
||||
|
||||
This program 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 http://dev.perl.org/licenses/ for more information.
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
|
|
|
@ -37,16 +37,18 @@ See Locale::Maketext - there are curently no extra methods in this module.
|
|||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>)
|
||||
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
||||
|
||||
=head1 LICENSE AND COPYRIGHT
|
||||
|
||||
Copyright (c) 1999-2010 Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>).
|
||||
All rights reserved
|
||||
Copyright 1999-2010 Duncan Ferguson.
|
||||
|
||||
This module is free software; you can redistribute it and/or
|
||||
modify it under the same terms as Perl itself. See L<perlartistic>.
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of either: the GNU General Public License as published
|
||||
by the Free Software Foundation; or the Artistic License.
|
||||
|
||||
This program 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 http://dev.perl.org/licenses/ for more information.
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
|
|
|
@ -28,16 +28,18 @@ No method are exported. See L<Locale::Maketext>.
|
|||
|
||||
=head1 AUTHOR
|
||||
|
||||
Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>)
|
||||
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
||||
|
||||
=head1 LICENSE AND COPYRIGHT
|
||||
|
||||
Copyright (c) 1999-2010 Duncan Ferguson (<duncan_j_ferguson (at) yahoo.co.uk>).
|
||||
All rights reserved
|
||||
Copyright 1999-2010 Duncan Ferguson.
|
||||
|
||||
This module is free software; you can redistribute it and/or
|
||||
modify it under the same terms as Perl itself. See L<perlartistic>.
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of either: the GNU General Public License as published
|
||||
by the Free Software Foundation; or the Artistic License.
|
||||
|
||||
This program 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 http://dev.perl.org/licenses/ for more information.
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
|
|
Loading…
Add table
Reference in a new issue