Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5018 anupam.sin 1
#!/bin/bash
2
STAT=`ps aux | grep pentaho | awk '{print $14}'`
3
if [ -n "$STAT" ]; then
4
	echo `date`; echo "pentaho [OK]"
5
else
6
	cd /root/pentaho/biserver-ce/
7
	./start-pentaho.sh
8
fi