From 75ff09167eb1c15ac70dbbbfbf3411d8b31799e9 Mon Sep 17 00:00:00 2001 From: Chiradeep Vittal Date: Thu, 4 Nov 2010 13:42:26 -0700 Subject: [PATCH] bug 6989: always return success inside remove script --- patches/systemvm/debian/vpn/opt/cloud/bin/vpn_l2tp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/systemvm/debian/vpn/opt/cloud/bin/vpn_l2tp.sh b/patches/systemvm/debian/vpn/opt/cloud/bin/vpn_l2tp.sh index 0cb9709e6a6..aeb1c464c41 100755 --- a/patches/systemvm/debian/vpn/opt/cloud/bin/vpn_l2tp.sh +++ b/patches/systemvm/debian/vpn/opt/cloud/bin/vpn_l2tp.sh @@ -80,7 +80,7 @@ remove_l2tp_ipsec_user() { pid=$(tdbdump /var/run/pppd2.tdb | grep -w $u | awk -F';' '{print $4}' | awk -F= '{print $2}') [ "$pid" != "" ] && kill -9 $pid fi - + return 0 } add_l2tp_ipsec_user() {