#!/bin/bash #chkconfig: 2345 30 30 # description:cctv-v3-native case $1 in start) /opt/landsea/cctv-v3/native/start.sh;; stop) /opt/landsea/cctv-v3/native/stop.sh;; *) echo "require startLive|stopLive" ;; esac