diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-12-30 21:27:02 -0800 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-12-30 21:27:02 -0800 |
commit | 3e9efc02288fd4cd386f825adf9017d6117e6383 (patch) | |
tree | cfa0973cf4c26439eb4e982f085321afb0b8e00a /pinyweb/cgi-bin/newuser.cgi | |
parent | c931a9b75459bd115c76533913cf5654e80f1a94 (diff) | |
download | piny-code-3e9efc02288fd4cd386f825adf9017d6117e6383.tar.gz piny-code-3e9efc02288fd4cd386f825adf9017d6117e6383.zip |
Some minor reorg.
Diffstat (limited to 'pinyweb/cgi-bin/newuser.cgi')
-rwxr-xr-x | pinyweb/cgi-bin/newuser.cgi | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pinyweb/cgi-bin/newuser.cgi b/pinyweb/cgi-bin/newuser.cgi new file mode 100755 index 0000000..002d2be --- /dev/null +++ b/pinyweb/cgi-bin/newuser.cgi @@ -0,0 +1,29 @@ +#!/usr/bin/perl +$| = 1; + +use warnings; + +use CGI; + +use IPC::Open2; + +$q = CGI->new; + +print( "Content-type: text/plain\n\n" ); + +if( $q->param('n') && $q->param('a') && $q->param('p') ) { + unless( open2( OUT, IN, '/usr/bin/sudo', '/usr/sbin/newuser', '--batch', $q->param('a'), $q->param('n') ) ) { + print 'could not execute newrepo'; + die; + }; + # make things flushier + select((select(IN), $| = 1)[0]); + select((select(OUT), $| = 1)[0]); + print( IN $q->param('p') . "\n" ); + close( IN ); + while( <OUT> ) { + print; + }; +} else { + print 'Missing parameters.'; +}; |