#!/bin/sh

start()
{
    /etc/init.d/sonic-ip start
}

case "$1" in

"start")
    start
    ;;

"stop")
    ;;

esac
