14 lines
176 B
Bash
Executable File
14 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# edac-util RAM error detection
|
|
#
|
|
# (c) 2014, Tom Laermans for Observium
|
|
|
|
edacutil=`which edac-util`
|
|
|
|
if [ $? -eq 0 ];
|
|
then
|
|
echo '<<<edac>>>'
|
|
$edacutil -v
|
|
fi
|