#!/bin/bash
#
# onapp-redis This script manages Percone Server
#
# chkconfig:       - 87 12
# description:     OCF-compliant wrapper over Percone Server init script

SERVICE='service mysql'
PROCESS_NAME=mysql

. /onapp/availability/ocf/adapter.sh

case "$1" in
    status)
        status
        ;;
    start)
        restart
        ;;
    stop)
        stop
        ;;
    restart)
        restart
        ;;
    *)
        usage
        ;;
esac
