diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-06-30 18:26:38 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-06-30 18:26:38 -0400 |
commit | 8938167b0efdda72f05f0aa1297f1132d09718cf (patch) | |
tree | 14ef13311512a66e6793b0ca6fcc9c30ba0d397f /config/openvpn-client-export | |
parent | b656d0e6874d07e4abbb206aced9806babf59a4a (diff) | |
download | pfsense-packages-8938167b0efdda72f05f0aa1297f1132d09718cf.tar.gz pfsense-packages-8938167b0efdda72f05f0aa1297f1132d09718cf.tar.bz2 pfsense-packages-8938167b0efdda72f05f0aa1297f1132d09718cf.zip |
Correct arguments to zip.
Diffstat (limited to 'config/openvpn-client-export')
-rwxr-xr-x | config/openvpn-client-export/openvpn-client-export.inc | 9 | ||||
-rwxr-xr-x | config/openvpn-client-export/vpn_openvpn_export.php | 2 |
2 files changed, 3 insertions, 8 deletions
diff --git a/config/openvpn-client-export/openvpn-client-export.inc b/config/openvpn-client-export/openvpn-client-export.inc index b872f8ed..14b2a007 100755 --- a/config/openvpn-client-export/openvpn-client-export.inc +++ b/config/openvpn-client-export/openvpn-client-export.inc @@ -284,14 +284,9 @@ function viscosity_openvpn_client_config_exporter($srvid, $usrid, $crtid, $usead // create template directory mkdir($tempdir, 0700, true); - // create config directory - $confdir = "{$tempdir}/config"; - if (!is_dir($conf_dir)) - mkdir($confdir, 0700, true); - // write cofiguration file $prefix = openvpn_client_export_prefix($srvid); - $cfgfile = "{$confdir}/config.conf"; + $cfgfile = "{$tempdir}/config.conf"; $conf = openvpn_client_export_config($srvid, $usrid, $crtid, $useaddr, $usetoken); if (!$conf) return false; @@ -317,7 +312,7 @@ function viscosity_openvpn_client_config_exporter($srvid, $usrid, $crtid, $usead openvpn_client_pem_to_pk12($p12file, $outpass, $crtfile, $keyfile, $cafile); // Zip Viscosity file - exec("/usr/local/bin/zip {$tempdir} {$tempdir}.zip"); + exec("/usr/local/bin/zip {$tempdir}.zip {$tempdir}"); // Read in file and deliver to client $outfile = "{$tempdir}.zip"; diff --git a/config/openvpn-client-export/vpn_openvpn_export.php b/config/openvpn-client-export/vpn_openvpn_export.php index c26236e7..8eecdae0 100755 --- a/config/openvpn-client-export/vpn_openvpn_export.php +++ b/config/openvpn-client-export/vpn_openvpn_export.php @@ -333,7 +333,7 @@ function usepass_changed() { <table border="0" cellpadding="2" cellspacing="0"> <tr> <td> - <input name="usepass" id="usepass" type="checkbox" value="yes" onClick="usepass_changed()" checked> + <input name="usepass" id="usepass" type="checkbox" onClick="usepass_changed()" checked> </td> <td> <span class="vexpl"> |