Rev 5018 | Details | Compare with Previous | Last modification | View Log | RSS feed
#!/bin/bash
STAT=`ps aux | grep pentaho | awk '{print $18}'`
if [ -n "$STAT" ]; then
echo `date`; echo "pentaho [OK]"
else
cd /root/pentaho/biserver-ce/
./start-pentaho.sh
fi