11 lines
222 B
Bash
11 lines
222 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
echo "Please configure DNS using the IP address from the previous stage."
|
||
|
|
echo "you have 120 seconds."
|
||
|
|
for i in {120..1}; do
|
||
|
|
echo -ne "Time remaining: $i seconds\r"
|
||
|
|
sleep 1
|
||
|
|
done
|
||
|
|
echo ""
|
||
|
|
|
||
|
|
exit 0
|