summaryrefslogtreecommitdiff
path: root/pinyweb/cgi-bin/auth
diff options
context:
space:
mode:
Diffstat (limited to 'pinyweb/cgi-bin/auth')
-rwxr-xr-xpinyweb/cgi-bin/auth/newrepo.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/pinyweb/cgi-bin/auth/newrepo.cgi b/pinyweb/cgi-bin/auth/newrepo.cgi
index 450fa82..ad3cdd7 100755
--- a/pinyweb/cgi-bin/auth/newrepo.cgi
+++ b/pinyweb/cgi-bin/auth/newrepo.cgi
@@ -12,7 +12,7 @@ $q = CGI->new;
print( "Content-type: text/plain\n\n");
if( $q->param('n') && $q->param('d') ) {
- unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', $q->param('n') ) ) {
+ unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', $q->param('n') ) ) {
print 'could not execute newrepo';
die;
};