#!/bin/sh ### BEGIN INIT INFO # Provides: # Required-Start: $all # Required-Stop: $all # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Service provided # Description: Enable service provided API at boot ### END INIT INFO set -e export PATH="$PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" CWD="" case "$1" in start) cd "$CWD" "" start& ;; *) echo "Usage: /etc/init.d/ {start}" exit 1 ;; esac exit 0