Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 9 lines (8 sloc) 346 Bytes
#! /usr/bin/perl
use strict;
use warnings;
my $cmd=$ENV{SSH_ORIGINAL_COMMAND};
$cmd or die "$0 : to be invoked via command option in authorized_keys only\n";
$cmd =~ /^rsync --server --sender -v?n?lHogDtprxe.iLsf? (--bwlimit=\d+ )?--numeric-ids \. \/\S*$/ or die "$0: wrong command for backup key: $cmd\n";
exec split(' ',$cmd);
die "$0: $!\n";