Merge pull request #1481 from TDT-AG/luci-app-openvpn-fixes
[oweals/luci.git] / applications / luci-app-openvpn / luasrc / model / cbi / openvpn.lua
index 45d916d7275b8c3f726b13af1d5c96c6870e2744..a6b0e1dd902f0c953483326dcc5a4e02a194762c 100644 (file)
@@ -26,9 +26,9 @@ uci:foreach( "openvpn_recipes", "openvpn_recipe",
 )
 
 function s.getPID(section) -- Universal function which returns valid pid # or nil
-       local pid = sys.exec("%s | grep -w %s | grep openvpn | grep -v grep | awk '{print $1}'" % { psstring,section} )
-       if pid and #pid > 0 and tonumber(pid) ~= nil then
-               return tonumber(pid)
+       local pid = sys.exec("%s | grep -w '[o]penvpn(%s)'" % { psstring, section })
+       if pid and #pid > 0 then
+               return tonumber(pid:match("^%s*(%d+)"))
        else
                return nil
        end