mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +01:00
fixing background service
This commit is contained in:
parent
01b6f4d4b4
commit
452c6528f1
2 changed files with 3 additions and 3 deletions
|
@ -3,6 +3,7 @@
|
|||
# This script runs on after start in background
|
||||
# as a service and gets restarted on failure
|
||||
# it runs ALMOST every seconds
|
||||
# DEBUG: sudo journalctl -f -u background
|
||||
|
||||
# INFOFILE - state data from bootstrap
|
||||
infoFile="/home/admin/raspiblitz.info"
|
||||
|
@ -26,7 +27,6 @@ do
|
|||
|
||||
# count up
|
||||
counter=$(($counter+1))
|
||||
echo "counter($counter)"
|
||||
|
||||
####################################################
|
||||
# RECHECK DHCP-SERVER
|
||||
|
@ -59,7 +59,7 @@ do
|
|||
|
||||
# every 15min - not too often
|
||||
# because its a ping to external service
|
||||
recheckPublicIP=$((($counter % 60)+1))
|
||||
recheckPublicIP=$((($counter % 900)+1))
|
||||
if [ ${recheckPublicIP} -eq 1 ]; then
|
||||
echo "*** RECHECK PUBLIC IP ***"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ After=bootstrap.service
|
|||
[Service]
|
||||
User=root
|
||||
Group=root
|
||||
Type=forking
|
||||
Type=simple
|
||||
ExecStart=/home/admin/_background.sh
|
||||
KillMode=process
|
||||
Restart=always
|
||||
|
|
Loading…
Add table
Reference in a new issue