X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=dynamic-ip-update;h=1e7880274c3a57a6801d930a20e3a1ded1b27dc0;hb=7e673f2615101982a17ffa0e23cb10b5b3803f07;hp=4b5983fbed4153e5c9b7a57d3203863b2093393f;hpb=12cab163424e3a7b0815646d1d4407f9b5839bcb;p=distro-setup diff --git a/dynamic-ip-update b/dynamic-ip-update index 4b5983f..1e78802 100755 --- a/dynamic-ip-update +++ b/dynamic-ip-update @@ -126,20 +126,20 @@ EOF } -if [[ $INVOCATION_ID ]]; then - # this is to prevent systemd from filling up the journal - for (( runcount=0; runcount < 100; runcount++ )); do +loop-main() { + while true; do main sleep 30 done +} + + +if [[ $INVOCATION_ID ]]; then + loop-main else main fi - - - - exit 0