Add nice warning to purge script

This commit is contained in:
Joshua Boniface 2023-09-01 15:42:24 -04:00
parent 72df058684
commit 98c3586511
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,13 @@
#!/bin/bash #!/bin/bash
echo -e "DANGER: This script will PURGE ALL PVC data and configuration from the following host(s):"
echo
echo -e " $@"
echo
echo -e "Are you sure you want to continue?"
echo
echo -en "To abort, press <Ctrl+C> now. To continue, press <Enter>. "
read
for host in $@; do for host in $@; do
ssh deploy@${host} " ssh deploy@${host} "