]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Eagerly remove .skip mark files in between mini_tdir.sh runs in case
authorYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Tue, 3 Feb 2026 14:07:37 +0000 (15:07 +0100)
committerYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Tue, 3 Feb 2026 14:08:59 +0000 (15:08 +0100)
  there has been a change on the environment.

doc/Changelog
testcode/mini_tdir.sh

index 08609fddc2f41a404d837813a877cc2567f1448b..06e40c8d698713caab9502fbb3a15711d9e437b2 100644 (file)
@@ -1,3 +1,7 @@
+3 February 2026: Yorgos
+       - Eagerly remove .skip mark files in between mini_tdir.sh runs in case
+         there has been a change on the environment.
+
 27 January 2026: Wouter
        - Add test for allow-notify with a host name.
 
index d1f7bfce94a8ffceb7ee0f8150c829043dfea568..caef1e3a372e9ba8d7829bb10630e1e339372452 100755 (executable)
@@ -141,6 +141,13 @@ if test -f $done; then
        exit 0
 fi
 
+# always clear the skip mark file in case something changed in the environment
+# in between runs
+if test -f $skip; then
+       echo "minitdir $skip exists; removing."
+       rm $skip
+fi
+
 # Copy
 if test $quiet = 0; then
        echo "minitdir copy $1 to $dir"