system-helpers/usr/local/bin/smartctl_tests_long

71 lines
1.4 KiB
Text
Raw Permalink Normal View History

2019-01-25 17:28:29 +00:00
#!/usr/bin/env bash
# usage
usage() {
USAGE=$(cat <<EOF
Usage: smartctl_tests_long
2019-01-25 17:28:29 +00:00
Schedules smartd long tests. Please see man smartctl_tests_long.
2019-01-25 17:28:29 +00:00
EOF
)
echo "$USAGE";
}
set -e;
# check for config file
2022-07-10 16:29:44 +00:00
apply_config() {
local config=$1;
if [[ ! -f "$config" ]]; then
echo "No config file specified";
echo "";
usage;
exit 1;
fi
set -a;
# shellcheck disable=SC1090
2022-07-10 16:29:44 +00:00
source "$config";
set +a;
}
2019-01-25 17:28:29 +00:00
source_config() {
local configFallback=$1;
local configGlobalFallback=$2;
2022-07-10 16:29:44 +00:00
if [[ -f "$configFallback" ]]; then
apply_config "$configFallback";
2022-07-10 16:33:00 +00:00
return;
2022-07-10 16:29:44 +00:00
fi
if [[ -f "$configGlobalFallback" ]]; then
apply_config "$configGlobalFallback";
2022-07-10 16:33:00 +00:00
return;
2022-07-10 16:29:44 +00:00
fi
2019-01-25 17:28:29 +00:00
}
check_required() {
type hostname &> /dev/null || { echo "Requiring 'hostname' but it's not installed"; exit 1; }
type smartctl &> /dev/null || { echo "Requiring 'smartctl' but it's not installed"; exit 1; }
}
SMARTCTL_TESTS_LONG_DEVICES=(sda)
source_config "$HOME/.smartctl_tests_long.conf" "/etc/smartctl_tests_long.conf"
check_required
2019-01-25 17:28:29 +00:00
HOSTNAME=$(hostname)
2019-01-25 17:28:29 +00:00
echo "Starting long tests for ...";
for d in "${SMARTCTL_TESTS_LONG_DEVICES[@]}"; do
DEVICE="/dev/$d";
echo "$DEVICE";
smartctl -t long "$DEVICE";
SUBJECT="[smartd $HOSTNAME] queued long test"
MESSAGE="Queued a smartd long test for $DEVICE."
notifier "${SUBJECT}" "${MESSAGE}"
2019-01-25 17:28:29 +00:00
done