gluon-mesh-vpn-tunneldigger: fix luacheck warnings
This commit is contained in:
parent
f67522bef3
commit
266e0aed38
@ -2,22 +2,22 @@
|
|||||||
|
|
||||||
local uci = require('simple-uci').cursor()
|
local uci = require('simple-uci').cursor()
|
||||||
|
|
||||||
function restart_tunneldigger()
|
local function restart_tunneldigger()
|
||||||
os.execute('logger -t tunneldigger-watchdog "Restarting Tunneldigger."')
|
os.execute('logger -t tunneldigger-watchdog "Restarting Tunneldigger."')
|
||||||
os.execute('/etc/init.d/tunneldigger restart')
|
os.execute('/etc/init.d/tunneldigger restart')
|
||||||
end
|
end
|
||||||
|
|
||||||
function read_pid_file()
|
local function read_pid_file()
|
||||||
local pid_file = io.open('/var/run/tunneldigger.mesh-vpn.pid', 'r')
|
local pid_file = io.open('/var/run/tunneldigger.mesh-vpn.pid', 'r')
|
||||||
if not pid_file then
|
if not pid_file then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
local pid = pid_file:read('*l')
|
local pid = pid_file:read('*l')
|
||||||
pid_file:close()
|
pid_file:close()
|
||||||
return pid
|
return pid
|
||||||
end
|
end
|
||||||
|
|
||||||
function has_mesh_vpn_neighbours()
|
local function has_mesh_vpn_neighbours()
|
||||||
local handle = io.popen('batctl o', 'r')
|
local handle = io.popen('batctl o', 'r')
|
||||||
if not handle then
|
if not handle then
|
||||||
return false
|
return false
|
||||||
|
Loading…
Reference in New Issue
Block a user