coherence revision 18861
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina# Get the value of a property defined in the service xml.
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březinaif [ -z ${DATADIR} ]; then
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina echo "coherence/data property not set"
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březinaif [ ! -d ${DATADIR} ]; then
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina echo "coherence/data directory ${DATADIR} is not a valid directory"
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina if [ ! -f ${LOCKFILE} ]; then
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina echo "Starting: " /usr/bin/$PROGNAME -c $CONFIGFILE
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina $PROGNAME -o use_dbus:yes -o controlpoint:yes -c $CONFIGFILE &
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina [ ${RETVAL} -eq 0 ] && touch ${LOCKFILE}
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina if [ -f ${LOCKFILE} ]; then
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina gprintf "Usage: %s {start|stop|restart|condrestart|status}\n" "$INITNAME"