-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcl-sendfile.pl
executable file
·97 lines (75 loc) · 2.67 KB
/
cl-sendfile.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env perl
$|++;
###########################################################################
# #
# Cluster Tools: cl-sendfile.pl #
# Copyright 2007-2011, Albert P. Tobey <[email protected]> #
# #
###########################################################################
=head1 NAME
cl-sendfile.pl - push a file over scp, in parallel
=head1 SYNOPSIS
Send files to cluster nodes. This also archives those files in the /root/files to make tracking changes to the cluster
from default installs easier.
cl-sendfile.pl -a -l /etc/httpd/conf/httpd.conf
cl-sendfile.pl -d -l /tmp/foo.conf -r /usr/local/etc/foo.conf
cl-sendfile.pl [-l $LOCAL_FILE] [-r $REMOTE_FILE] [-h] [-v] [--incl <pattern>] [--excl <pattern>]
-l: local file/directory to rsync - passed through unmodified to rsync
-r: remote location for rsync to write to - also unmodified
-x: stage the file as a normal user and relocate using sudo (requires sudo root/NOPASSWD)
-v: verbose output
-h: print this message
=cut
use Pod::Usage;
use File::Temp qw/tempfile/;
use File::Basename;
use File::Copy;
use Getopt::Long;
use strict;
use warnings;
use FindBin qw($Bin);
use lib $Bin;
use DshPerlHostLoop;
our $local_file = undef;
our $remote_file = undef;
our $help = undef;
our $sudo = undef;
our $final_file = undef;
GetOptions(
"l=s" => \$local_file,
"r=s" => \$remote_file,
"x" => \$sudo,
"h" => \$help
);
if ( !$remote_file && $local_file && $local_file =~ m#^/# ) {
$remote_file = $local_file;
}
unless ( ($local_file && $remote_file && -r $local_file) || $help ) {
pod2usage();
}
$final_file = $remote_file;
if ( $sudo ) {
(my $fh, $remote_file) = my_tempfile();
close $fh;
unlink $remote_file;
}
func_loop(sub {
my $host = shift;
scp( $local_file, "$host:$remote_file" );
});
if ( $sudo ) {
func_loop(sub {
my $host = shift;
ssh( "$remote_user\@$host", "sudo cp $remote_file $final_file" );
ssh( "$remote_user\@$host", "rm $remote_file" );
});
}
# vim: et ts=4 sw=4 ai smarttab
__END__
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2007-2011 by Al Tobey.
This is free software; you can redistribute it and/or modify it under the terms
of the Artistic License 2.0. (Note that, unlike the Artistic License 1.0,
version 2.0 is GPL compatible by itself, hence there is no benefit to having an
Artistic 2.0 / GPL disjunction.) See the file LICENSE for details.
=cut