11 lines
No EOL
222 B
Bash
Executable file
11 lines
No EOL
222 B
Bash
Executable file
#!/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 |