-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns-test-clean-up.cmd
35 lines (27 loc) · 1017 Bytes
/
dns-test-clean-up.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
cls
echo Clean up Logs
del /q dns*.txt
echo -----------------------------
echo DNS AAAA List #1
del /q "dns-aaaa-records-list-1\.terraform.lock.hcl"
del /q "dns-aaaa-records-list-1\terraform.tfstate.*"
rmdir /s /q "dns-aaaa-records-list-1\.terraform"
echo DNS AAAA List #2
del /q "dns-aaaa-records-list-2\.terraform.lock.hcl"
del /q "dns-aaaa-records-list-2\terraform.tfstate.*"
rmdir /s /q "dns-aaaa-records-list-2\.terraform"
echo DNS AAAA List #3
del /q "dns-aaaa-records-list-3\.terraform.lock.hcl"
del /q "dns-aaaa-records-list-3\terraform.tfstate.*"
rmdir /s /q "dns-aaaa-records-list-3\.terraform"
echo DNS AAAA List #4
del /q "dns-aaaa-records-list-4\.terraform.lock.hcl"
del /q "dns-aaaa-records-list-4\terraform.tfstate.*"
rmdir /s /q "dns-aaaa-records-list-4\.terraform"
echo DNS AAAA Create
del /q "dns-aaaa-records-create\.terraform.lock.hcl"
del /q "dns-aaaa-records-create\terraform.tfstate.*"
rmdir /s /q "dns-aaaa-records-create\.terraform"
echo -----------------------------
pause