From 2c3e27fa37d9176d36836aafec6de33659dbf51e Mon Sep 17 00:00:00 2001 From: Matan Horovitz Date: Sun, 10 Apr 2022 11:38:25 +0300 Subject: [PATCH] No wait by default --- UnboundUnbound | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnboundUnbound b/UnboundUnbound index a47c814..bcc998e 100755 --- a/UnboundUnbound +++ b/UnboundUnbound @@ -1,8 +1,8 @@ #!/bin/bash #Simple script to use standard DNS if Unbound (behind Adguard) is unavailable for some reason if [[ -z $1 ]]; then - SECONDS=60 -# ^ If nothing is specified, wait 60 seconds + SECONDS=0 +# ^ If nothing is specified, do not wait else SECONDS=$1 # ^ If specified, wait however many seconds user specifies