summaryrefslogtreecommitdiff
path: root/pinyweb/cgi-bin/auth/lsrepo.cgi
blob: fa429522fdfd4f6bc46476a57160cf8264c08d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl
$| = 1;

use warnings;

use CGI;

use IPC::Open2;

#$q = CGI->new;

print( "Content-type: text/plain\n\n");

open(STDERR, ">&STDOUT");

unless ( system( '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'lsrepo' ) == 0 ) {
  die( 'lsrepo was unsuccessful.' );
};