diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2004-11-17 23:10:25 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2004-11-17 23:10:25 +0000 |
commit | 1bad4fe8ab1f74453b7a5f93a8ad3170000c06cc (patch) | |
tree | 13896b3f04b8409ffda7b98896c99a5b9854e610 | |
parent | c260f1d570993f867833763e1094ade1ab9ed273 (diff) | |
download | pfsense-1bad4fe8ab1f74453b7a5f93a8ad3170000c06cc.zip pfsense-1bad4fe8ab1f74453b7a5f93a8ad3170000c06cc.tar.gz |
comment up some of the functions
-rwxr-xr-x | usr/local/www/system_advanced_create_certs.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/local/www/system_advanced_create_certs.php b/usr/local/www/system_advanced_create_certs.php index 6ec1151..5d45aeb 100755 --- a/usr/local/www/system_advanced_create_certs.php +++ b/usr/local/www/system_advanced_create_certs.php @@ -35,6 +35,8 @@ $fd = fopen("/etc/ssl/openssl.cnf", "r"); $openssl = fread($fd,8096); fclose($fd); +/* Lets match the fileds in the read in file and + populate the variables for the form */ preg_match('/\nC\=(.*)\n/', $openssl, $countrycodeA); preg_match('/\nST\=(.*)\n/', $openssl, $stateorprovinceA); preg_match('/\nL\=(.*)\n/', $openssl, $citynameA); @@ -51,7 +53,7 @@ $commonname = $commonnameA[1]; if ($_POST) { - /* Create a new openssl.cnf */ + /* Grab posted variables and create a new openssl.cnf */ $countrycode=$_POST['countrycode']; $stateorprovince=$_POST['stateorprovince']; $cityname=$_POST['cityname']; @@ -59,6 +61,7 @@ if ($_POST) { $orginizationdepartment=$_POST['orginizationdepartment']; $commonname=$_POST['commonname']; + /* Write out /etc/ssl/openssl.cnf */ $fd = fopen("/etc/ssl/openssl.cnf", "w"); fwrite($fd, ""); fwrite($fd, "[ req ]\n"); |