From 1c50f124afd170e3feaea3163d15c2ece731d67a Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Wed, 1 Jun 2011 04:34:39 -0700 Subject: newrepo.cgi: adding support for --enable/disable-ikiwiki --- pinyweb/cgi-bin/auth/newrepo.cgi | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/pinyweb/cgi-bin/auth/newrepo.cgi b/pinyweb/cgi-bin/auth/newrepo.cgi index aa42732..691387d 100755 --- a/pinyweb/cgi-bin/auth/newrepo.cgi +++ b/pinyweb/cgi-bin/auth/newrepo.cgi @@ -14,8 +14,20 @@ $q = CGI->new; print( "Content-type: text/plain\n\n"); if( defined( $q->param('r') ) && defined( $q->param('d') ) ) { - unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', $q->param('r') ) ) { - die 'could not execute newrepo'; + if( defined( $q->param('i') && $q->param('i') ~= /0|1/ ) { + if( $q->param('i') eq "0" ) { + unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', '--disable-ikiwiki', $q->param('r') ) ) { + die 'could not execute newrepo'; + }; + } elsif( $q->param('i') eq "1" ) { + unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', '--enable-ikiwiki', $q->param('r') ) ) { + die 'could not execute newrepo'; + }; + }; + } else { + unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', $q->param('r') ) ) { + die 'could not execute newrepo'; + }; }; # make things flushier select( (select(IN), $| = 1)[0] ); -- cgit v1.2.3