Files
cloudron-box/src/scripts/hdparm.sh

24 lines
356 B
Bash
Raw Normal View History

2023-01-27 21:05:25 +01:00
#!/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
device="$1"
# -t performs a non-cache device read speed test
hdparm -t "${device}"