#!/bin/bash

ipmitool=`which ipmitool`

if [ $? -eq 0 ]
then
  echo '<<<ipmitool-sensor>>>'
  $ipmitool sensor
fi
