2017-07-30 21:33:59 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-07-30 22:15:01 +00:00
|
|
|
echo "~> Going to wipe $blockdevice. Just skip it if you are really sure that the drive is clean."
|
|
|
|
echo -n "~> Wipe block device? (Y/n) "
|
|
|
|
read answer
|
|
|
|
|
2017-08-07 16:02:57 +00:00
|
|
|
if [ "$answer" == "n" ] || [ "$answer" == "N" ]; then
|
2017-07-30 22:15:01 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -n "~> You sure? (y/N) "
|
2017-07-30 21:33:59 +00:00
|
|
|
read answer
|
|
|
|
|
2017-08-07 16:02:57 +00:00
|
|
|
if [ "$answer" == "y" ] || [ "$answer" == "Y" ]; then
|
2017-07-30 21:33:59 +00:00
|
|
|
echo "~> OK. Be patient now, that could take some time..."
|
|
|
|
dd if=/dev/zero of=$blockdevice status=progress
|
2017-07-30 22:15:01 +00:00
|
|
|
exit 0
|
2017-07-30 21:33:59 +00:00
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|