diff options
author | Ermal <eri@pfsense.org> | 2014-08-18 21:53:44 +0200 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2014-08-18 21:53:44 +0200 |
commit | 30c591d65613f821293b2f319b01a9755700fa19 (patch) | |
tree | cb21fc2c65e79e75327c7647e0c46aa087f40bfc /etc/inc/ipsec.inc | |
parent | fe12d7ea125649dde541394e10002ba9cbc136b8 (diff) | |
download | pfsense-30c591d65613f821293b2f319b01a9755700fa19.zip pfsense-30c591d65613f821293b2f319b01a9755700fa19.tar.gz |
Use proper path to setkey now that ipsec-tools are not used anymore
Diffstat (limited to 'etc/inc/ipsec.inc')
-rw-r--r-- | etc/inc/ipsec.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/ipsec.inc b/etc/inc/ipsec.inc index 22b95f2..60b7f3e 100644 --- a/etc/inc/ipsec.inc +++ b/etc/inc/ipsec.inc @@ -29,7 +29,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - pfSense_BUILDER_BINARIES: /usr/local/sbin/setkey + pfSense_BUILDER_BINARIES: /sbin/setkey pfSense_MODULE: ipsec */ @@ -498,7 +498,7 @@ function ipsec_smp_dump_status() { */ function ipsec_dump_spd() { - $fd = @popen("/usr/local/sbin/setkey -DP", "r"); + $fd = @popen("/sbin/setkey -DP", "r"); $spd = array(); if ($fd) { while (!feof($fd)) { @@ -548,7 +548,7 @@ function ipsec_dump_spd() */ function ipsec_dump_sad() { - $fd = @popen("/usr/local/sbin/setkey -D", "r"); + $fd = @popen("/sbin/setkey -D", "r"); $sad = array(); if ($fd) { while (!feof($fd)) { |