-
Notifications
You must be signed in to change notification settings - Fork 9
/
check_megaraid_bbu.sh
295 lines (236 loc) · 7.25 KB
/
check_megaraid_bbu.sh
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
#!/bin/bash
#
# check_megaraid_bbu - Script to check status of LSI battery.
#
# Copyright 2015 - Kumina B.V.
# Licensed under the terms of the GNU GPL version 3 or higher
abort() { echo -e "\nERROR: $1" >&2; exit 1; }
## Variables
LOGGER=$(which logger) || abort 'logger not found in the path.'
MEGACLI=$(which megacli) || abort 'megacli not found in the path.'
ADAPTER=ALL # On which adapter the check should be executed.
## General
# Check we are run as root
if [ "$(whoami)" != "root" ] ; then
abort 'Please run this script as root.'
fi
## BBU Firmware status
case $1 in
status_voltage)
# Check voltage status
# Result: OK/??
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Voltage" | grep -v "Voltage:" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'OK' ]
then
echo "Voltage is OK"
exit 0
else
echo "Voltage is NOT OK"
exit 2
fi
;;
status_temprature)
# Check temperature status
# Result: OK/??
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Temperature" | grep -v "Temperature:" | grep -v "Over Temperature" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'OK' ]
then
echo "Temperature is OK"
exit 0
else
echo "Temperature is NOT OK"
exit 2
fi
;;
relearn_cycle_requested)
# Check if learn cycle has been requested
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Learn Cycle Requested" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'No' ]
then
echo "No relearn cycle requested"
exit 0
else
echo "Relearn cycle requested"
exit 1
fi
;;
relearn_cycle_active)
# Check if learn cycle is active.
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Learn Cycle Active" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'No' ]
then
echo "No relearn cycle active"
exit 0
else
echo "Relearn cycle active"
exit 1
fi
;;
relearn_cycle_status)
# Check learn cycle status
# Result: OK/??
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Learn Cycle Status" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'OK' ]
then
echo "Relearn status is OK"
exit 0
else
echo "Relearn status is NOT OK"
exit 2
fi
;;
relearn_cycle_timeout)
# Check learn cycle timeout
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Learn Cycle Timeout" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'No' ]
then
echo "No relearn cycle timeout"
exit 0
else
echo "Relearn has timed out"
exit 1
fi
;;
i2c_errors_detected)
# Check for i2c errors
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "I2c Errors Detected" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'No' ]
then
echo "No i2c errors"
exit 0
else
echo "An i2c error has occurred"
exit 1
fi
;;
battery_pack_missing)
# Check if battery pack is missing
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Battery Pack Missing" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'No' ]
then
echo "Battery pack is present"
exit 0
else
echo "Battery pack is missing"
exit 2
fi
;;
battery_replacement_required)
# Check if battery replacement is required
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Battery Replacement required" | cut -d ":" -f2 | sed -e 's/^[[:space:]]*//')
if [ $RESULT = 'No' ]
then
echo "Battery pack does not need replacement"
exit 0
else
echo "Battery pack needs replacement"
exit 2
fi
;;
battery_replacement_advised)
# Check preventive failure status
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Pack is about to fail & should be replaced" | cut -d":" -f2 | tr -d '[[:space:]]')
if [ $RESULT = 'No' ]
then
echo "Preventive battery replacement is not advised"
exit 0
else
echo "Preventive battery replacement is advised"
exit 1
fi
;;
remaining_capacity_low)
# Check remaining capacity
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Remaining Capacity Low" | cut -d":" -f2 | tr -d '[[:space:]]')
if [ $RESULT = 'No' ]
then
echo "Remaining capacity is OK"
exit 0
else
echo "Remaining capacity low"
exit 1
fi
;;
periodic_learn_required)
# Check unkown
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Periodic Learn Required" | cut -d":" -f2 | tr -d '[[:space:]]')
if [ $RESULT = 'No' ]
then
echo "Periodic learn not required"
exit 0
else
echo "Periodic learn required"
exit 1
fi
;;
transparent_learn)
# Check unknow
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Transparent Learn" | cut -d":" -f2 | tr -d '[[:space:]]')
if [ $RESULT = 'No' ]
then
echo "Transparent learn is disabled"
exit 0
else
echo "Transparent learn is enabled"
exit 1
fi
;;
no_space_cache_offload)
# Check unknow
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "No space to cache offload" | cut -d":" -f2 | tr -d '[[:space:]]')
if [ $RESULT = 'No' ]
then
echo "Enough space to cache offload"
exit 0
else
echo "No space to cache offload"
exit 1
fi
;;
cache_offload_premium_required)
# Check unknow
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Cache Offload premium feature required" | cut -d":" -f2 | tr -d '[[:space:]]')
if [ $RESULT = 'No' ]
then
echo "Cache Offload premium feature not required"
exit 0
else
echo "Cache Offload premium feature required"
exit 1
fi
;;
module_microcode_update_required)
# Check unknow
# Result: Yes/No
RESULT=$($MEGACLI -AdpBbuCmd -GetBbuStatus -a$ADAPTER -NoLog | grep "Module microcode update required" | cut -d":" -f2 | tr -d '[[:space:]]')
if [ $RESULT = 'No' ]
then
echo "Module microcode update is not required"
exit 0
else
echo "Module microcode update required"
exit 1
fi
;;
-h|--help)
# Show usage
echo "Usage: $0 [CHECKNAME]"
exit 0
;;
*)
# Show usage
echo "Usage: $0 [CHECKNAME]"
exit 0
esac