Reject any --remove-* options when read-only, just in case there
authorWayne Davison <wayned@samba.org>
Sun, 24 Apr 2005 16:19:16 +0000 (16:19 +0000)
committerWayne Davison <wayned@samba.org>
Sun, 24 Apr 2005 16:19:16 +0000 (16:19 +0000)
are new ones added in the future.

support/rrsync

index b552002..1e54b3d 100644 (file)
@@ -31,8 +31,8 @@ die "Not invoked via sshd\n$Usage"    unless defined $command;
 die "SSH_ORIGINAL_COMMAND='$command' is not rsync\n" unless $command =~ /^rsync\s/;
 die "$0 -ro: sending to read-only server not allowed\n"
        if $ro and $command !~ /^rsync --server --sender /;
-die "$0 -ro: use of --remove-sent-files with read-only server not allowed\n"
-       if $ro and $command =~ /\s--remove-sent-files/;
+die "$0 -ro: use of $1 with read-only server not allowed\n"
+       if $ro and $command =~ /\s(--remove-\S+)/;
 
 my ($cmd,$dir) = $command =~ /^(rsync\s+(?:-[-a-zA-Z]+\s+)+\.) ?("[^"]*"|[^\s"]*)$/;
 die "$0: invalid rsync-command syntax or options\n" if !defined $cmd;