Remove unused rmbackup.sh

This commit is contained in:
Johannes Zellner
2017-04-17 15:46:58 +02:00
parent 7b93150047
commit dda16331f6
3 changed files with 0 additions and 25 deletions
-21
View File
@@ -1,21 +0,0 @@
#!/bin/bash
set -eu -o pipefail
if [[ ${EUID} -ne 0 ]]; then
echo "This script should be run as root." > /dev/stderr
exit 1
fi
if [[ $# -eq 0 ]]; then
echo "No arguments supplied"
exit 1
fi
if [[ "$1" == "--check" ]]; then
echo "OK"
exit 0
fi
# remove the file
rm -rf "${1}"