Browse Source

bmx7-dnsupdate: wait 10 secs if bmx7 ins't running

If bmx7 isn't running just yet the folder
`/var/run/bmx7/json/originators` is missing and so the while loop runs
non stop. Now the loop sleeps for 10 seconds if inotifywait fails.

Signed-off-by: Paul Spooren <spooren@informatik.uni-leipzig.de>
lilik-openwrt-22.03
Paul Spooren 7 years ago
parent
commit
ad05349db6
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      utils/bmx7-dnsupdate/Makefile
  2. +1
    -1
      utils/bmx7-dnsupdate/files/usr/bin/bmx7-dnsupdate

+ 1
- 1
utils/bmx7-dnsupdate/Makefile View File

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=bmx7-dnsupdate PKG_NAME:=bmx7-dnsupdate
PKG_VERSION:=0.1 PKG_VERSION:=0.1
PKG_RELEASE:=1
PKG_RELEASE:=2
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk


+ 1
- 1
utils/bmx7-dnsupdate/files/usr/bin/bmx7-dnsupdate View File

@ -25,5 +25,5 @@ while true; do
killall -HUP dnsmasq killall -HUP dnsmasq
# block until originators changes # block until originators changes
inotifywait -e create -e delete -q /var/run/bmx7/json/originators/
inotifywait -e create -e delete -q /var/run/bmx7/json/originators/ || sleep 10
done done

Loading…
Cancel
Save