summaryrefslogtreecommitdiff
path: root/pinyweb/cgi-bin/auth/rebuildrepo.cgi
blob: 14525735d6fbd3edea48121a58c7e2646adccb60 (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( defined( $q->param('r') ) ) {
  unless ( system( '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'rebuildrepo', scalar( $q->param('r') ) ) == 0 ) {
    die( 'rebuildrepo was unsuccessful.' );
  };
} else {
  print 'Missing parameters.';
};