X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=bak-git-server.pl;h=5e656a0efb416af808dc26d929983846b2241712;hb=4faf28e5b9db5adabd5005cb2655365774001b55;hp=50425517befabf24210cb3e21da0b64d0d829b28;hpb=d660b279881be61696581461689011234cf971bd;p=bak-git.git diff --git a/bak-git-server.pl b/bak-git-server.pl index 5042551..5e656a0 100755 --- a/bak-git-server.pl +++ b/bak-git-server.pl @@ -26,8 +26,12 @@ bak command overview: bak ch[anges] bak revert [host:]/path + bak cat [host:]/path + bak - push all changed files to server +See L for more information + =cut use warnings; @@ -51,6 +55,7 @@ $server_ip ||= '127.0.0.1'; my $shell_client = <<__SHELL_CLIENT__; #!/bin/sh +#echo \$USER/\$SUDO_USER $install `pwd` \$* | nc 127.0.0.1 9001 echo \$USER/\$SUDO_USER `hostname` `pwd` \$* | nc $server_ip 9001 __SHELL_CLIENT__ @@ -87,6 +92,11 @@ warn "dir: $dir listen: $server_ip:9001\n" , $shell_client ; +sub rsync { + warn "# rsync ",join(' ', @_), "\n"; + system 'rsync', @_; +} + sub pull_changes { my $hostname = shift; system "find $hostname -type f | sed 's,$hostname,,' > /tmp/$hostname.list"; @@ -95,7 +105,7 @@ sub pull_changes { print $files "$_\n" foreach @_; close($files); } - system "rsync -avv --files-from /tmp/$hostname.list root\@$hostname:/ $hostname/" + rsync split / /, "-avv --files-from /tmp/$hostname.list root\@$hostname:/ $hostname/"; } while (my $client = $server->accept()) { @@ -141,7 +151,7 @@ while (my $client = $server->accept()) { } elsif ( $command eq 'add' ) { mkpath "$hostname/$dir" unless -e "$hostname/$dir"; while ( $path ) { - system 'rsync', '-avv', "root\@$hostname:$path", "$hostname/$path"; + rsync( '-avv', "root\@$hostname:$path", "$hostname/$path" ); print $client git 'add', "$hostname/$path"; $args_message =~ s/^(.+)\b// || last; @@ -158,14 +168,16 @@ while (my $client = $server->accept()) { $command = 'log --patch-with-stat' if $command =~ m/^ch/; pull_changes( $hostname ) if $command eq 'diff'; if ( $on_host ) { - system 'rsync', '-avv', "root\@$on_host:$path", "$on_host/$path"; + mkpath $_ foreach grep { ! -e $_ } ( "$hostname/$dir", "$on_host/$dir" ); + rsync( '-avv', "root\@$hostname:$path", "$hostname/$path" ); + rsync( '-avv', "root\@$on_host:$path", "$on_host/$path" ); open(my $diff, '-|', "diff -Nuw $hostname$path $on_host$path"); while(<$diff>) { print $client $_; } } else { # commands without path will show host-wide status/changes - my $backup_path = $rel_path ? $backup_path : "$hostname/"; + my $backup_path = $path ? "$hostname/$path" : "$hostname/"; # hostname must end with / to prevent error from git: # ambiguous argument 'arh-hw': both revision and filename # to support branches named as hosts @@ -173,11 +185,20 @@ while (my $client = $server->accept()) { } } elsif ( $command eq 'revert' ) { if ( $on_host ) { - system 'rsync', '-avv', "$on_host/$path", "root\@$hostname:$path"; + rsync( '-avv', "$on_host/$path", "root\@$hostname:$path" ); } else { print $client git "checkout -- $hostname/$path"; - system 'rsync', '-avv', "$hostname/$path", "root\@$hostname:$path"; + rsync( '-avv', "$hostname/$path", "root\@$hostname:$path" ); + } + } elsif ( $command eq 'cat' ) { + my $file_path = ( $on_host ? $on_host : $hostname ) . "/$path"; + open(my $file, '<', $file_path) || warn "ERROR $file_path: $!"; + while(<$file>) { + print $client $_; } + close($file); + } elsif ( $command eq 'ls' ) { + print $client `ls $backup_path`; } else { print $client "Unknown command: $command\n"; }