blob: 2d0ff23e26329926fdf55c651d0b1636a87219e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/perl
$| = 1;
open(STDERR, ">&STDOUT");
use warnings;
use CGI;
use IPC::Open2;
$q = CGI->new;
print( "Content-type: text/plain\n\n");
if( $q->param('r') ) {
unless ( system( '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'rmrepo', $q->param('r') ) == 0 ) {
die( 'rmrepo was unsuccessful.' );
};
} else {
print 'Missing parameters.';
};
|