-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gluon-mesh-vpn-tunneldigger add watchdog script
The logic is based on the previously used shell script implementation. Co-Authored-By: Robin Weiligmann <[email protected]>
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
package/gluon-mesh-vpn-tunneldigger/files/usr/bin/tunneldigger-watchdog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/usr/bin/lua | ||
|
||
local uci = require('simple-uci').cursor() | ||
|
||
function restart_tunneldigger() | ||
os.execute('logger -t tunneldigger-watchdog "Restarting Tunneldigger."') | ||
os.execute('/etc/init.d/tunneldigger restart') | ||
end | ||
|
||
function read_pid_file() | ||
local pid_file = io.open('/var/run/tunneldigger.mesh-vpn.pid', 'r') | ||
if not pid_file then | ||
return nil | ||
end | ||
local pid = pid_file:read('*l') | ||
pid_file:close() | ||
return pid | ||
end | ||
|
||
function has_mesh_vpn_neighbours() | ||
local handle = io.popen('batctl o', 'r') | ||
if not handle then | ||
return false | ||
end | ||
for line in handle:lines() do | ||
if line:find('mesh%-vpn') then | ||
handle:close() | ||
return true | ||
end | ||
end | ||
handle:close() | ||
return false | ||
end | ||
|
||
if uci:get_bool('tunneldigger', 'mesh_vpn', 'enabled') then | ||
if io.popen('pgrep tunneldigger'):read('*l') ~= read_pid_file() then | ||
os.execute('logger -t tunneldigger-watchdog "Process-Pid does not match with pid-File."') | ||
restart_tunneldigger() | ||
return | ||
end | ||
if not has_mesh_vpn_neighbours() then | ||
os.execute('logger -t tunneldigger-watchdog "No vpn-mesh neighbours found."') | ||
restart_tunneldigger() | ||
return | ||
end | ||
end |
1 change: 1 addition & 0 deletions
1
package/gluon-mesh-vpn-tunneldigger/files/usr/lib/micron.d/tunneldigger-watchdog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*/5 * * * * /usr/bin/tunneldigger-watchdog |