From 1cde411bb3b0d60f4f92be52aa60f342558af30a Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Sun, 22 Apr 2018 12:49:56 +0200 Subject: [PATCH] OpenVPN cleanups, found this unused gem with possible side affects while working on https://github.com/opnsense/core/issues/2348 --- src/etc/inc/plugins.inc.d/openvpn/attributes.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/etc/inc/plugins.inc.d/openvpn/attributes.sh b/src/etc/inc/plugins.inc.d/openvpn/attributes.sh index b88d1dfbf..942cac6b4 100755 --- a/src/etc/inc/plugins.inc.d/openvpn/attributes.sh +++ b/src/etc/inc/plugins.inc.d/openvpn/attributes.sh @@ -1,14 +1,6 @@ #!/bin/sh -echo $script_type > /tmp/script -if [ "$script_type" = "client-connect" ]; then - if [ -f /tmp/$common_name ]; then - /bin/cat /tmp/$common_name > $1 - /bin/rm /tmp/$common_name - fi -elif [ "$script_type" = "client-disconnect" ]; then - command="/sbin/pfctl -a 'openvpn/$common_name' -F rules" - eval $command +if [ "$script_type" = "client-disconnect" ]; then /sbin/pfctl -k $ifconfig_pool_remote_ip /sbin/pfctl -K $ifconfig_pool_remote_ip fi