⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postioexec

📁 Perl写的CA认证程序
💻
字号:
## OpenCA - RA Server Command## (c) 1998-2001 by Massimiliano Pala and OpenCA Group####   File Name: postIOExec##       Brief: postIOExec command## Description: execute the postIOExec command##  Parameters:if ( $cmd !~ /postIOExec/i ) {        configError( "Wrong Command Usage ($cmd/postIOExec)!" );        exit 1;}## Get required parameters from the configuration filemy $command	= getRequired( 'PostIOExec' );print startLogPage( "Post IO Exec");print addLogSection("Executing Post IO Exec ... ");print addLogLine( "");print addPreLogLine( "[ $command ] ");if( $command ne "" ) {	$ret = `$command 2>&1`;}if( $? != 0 ) {	print addErrorLog( "Failed!","$ret" );	closePage();	exit;} print addLogLine("Ok.");print closeLogSection();closePage();1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -