Permalink
Cannot retrieve contributors at this time
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?
pbackup/extra/pbackup_remote.pl.in
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
9 lines (8 sloc)
346 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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"; |