X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=bak-git-server.pl;h=2b223c6c55a92a42e0afd1685b28798f8aa7d034;hb=4df71e9d801a1b344952b36e9c8bdf33294c01d1;hp=8ac6e3a77b04b4554f351e378343f9c504b8e2f1;hpb=b7f41236d36d928f2f4ea089543135d01bc1803f;p=bak-git.git diff --git a/bak-git-server.pl b/bak-git-server.pl index 8ac6e3a..2b223c6 100755 --- a/bak-git-server.pl +++ b/bak-git-server.pl @@ -90,6 +90,11 @@ warn "dir: $dir listen: $server_ip:9001\n" sub pull_changes { my $hostname = shift; system "find $hostname -type f | sed 's,$hostname,,' > /tmp/$hostname.list"; + if ( @_ ) { + open(my $files, '>>', "/tmp/$hostname.list"); + print $files "$_\n" foreach @_; + close($files); + } system "rsync -avv --files-from /tmp/$hostname.list root\@$hostname:/ $hostname/" } @@ -141,7 +146,7 @@ while (my $client = $server->accept()) { } elsif ( $command =~ m{(diff|status|log|ch)} ) { $command .= ' --stat' if $command eq 'log'; $command = 'log --patch-with-stat' if $command =~ m/^ch/; - pull_changes $hostname if $command eq 'diff'; + pull_changes( $hostname ) if $command eq 'diff'; if ( $on_host ) { system 'rsync', '-avv', "root\@$on_host:$path", "$on_host/$path"; open(my $diff, '-|', "diff -Nuw $hostname$path $on_host$path");