blob: 785dc1e870b413a15207a1ffcb71174745579ae9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#!/bin/bash
#
# update_power_counter.sh - query the S.M.A.R.T. data and store the state
#
# This fetches the current power count and stores it. It also prints the
# previous power count state and the next expected state. This must be run as
# root or as a user that has access to the specific device.
#
DEVICE="/dev/sda";
STATE_DIR="/var/lib/smartmonster";
PREVIOUS_POWER_COUNT_FILE="$STATE_DIR/previous_power_count";
CURRENT_POWER_COUNT_FILE="$STATE_DIR/current_power_count";
EXPECTED_POWER_COUNT_FILE="$STATE_DIR/expected_power_count";
POWER_INCREMENT=1;
if [ "$USER" != "root" ];
then
echo "You must be root!";
exit 1;
fi
# XXX: Hello TOCTOU!
if [ ! -d "$STATE_DIR" ];
then
echo "You have no $STATE_DIR; creating it!";
mkdir -p $STATE_DIR;
if [ $? != 0 ];
then
echo "Unable to create $STATE_DIR!";
exit 1;
fi
fi
SMARTCTL="`which smartctl`";
SMARTCTL_ARGS="-A";
POWER_COUNT="Power_Cycle_Count"
CURRENT_POWER_COUNT=`$SMARTCTL $SMARTCTL_ARGS $DEVICE|grep $POWER_COUNT|awk '{print $10}'`;
if [ ! -f "$PREVIOUS_POWER_COUNT_FILE" ];
then
echo "You have no $PREVIOUS_POWER_COUNT_FILE!";
echo "Assuming first run and populating with CURRENT_POWER_COUNT";
echo $CURRENT_POWER_COUNT > $PREVIOUS_POWER_COUNT_FILE;
echo $PREVIOUS_POWER_COUNT=$CURRENT_POWER_COUNT;
else
PREVIOUS_POWER_COUNT="`cat $PREVIOUS_POWER_COUNT_FILE`";
if [ -z $PREVIOUS_POWER_COUNT ];
then
PREVIOUS_POWER_COUNT=$CURRENT_POWER_COUNT;
fi
fi
EXPECTED_NEXT_COUNT="$(expr $CURRENT_POWER_COUNT + $POWER_INCREMENT)";
# Print/export the count data
echo "PREVIOUS_POWER_COUNT=$PREVIOUS_POWER_COUNT";
echo "CURRENT_POWER_COUNT=$CURRENT_POWER_COUNT";
echo "EXPECTED_NEXT_COUNT=$EXPECTED_NEXT_COUNT";
export PREVIOUS_POWER_COUNT=$PREVIOUS_POWER_COUNT;
export CURRENT_POWER_COUNT=$CURRENT_POWER_COUNT;
export EXPECTED_NEXT_COUNT=$EXPECTED_NEXT_COUNT;
# Update the state files
echo $PREVIOUS_POWER_COUNT > $PREVIOUS_POWER_COUNT_FILE;
echo $CURRENT_POWER_COUNT > $CURRENT_POWER_COUNT_FILE;
echo $EXPECTED_NEXT_COUNT > $EXPECTED_POWER_COUNT_FILE;
|