#! /bin/sh ### BEGIN INIT INFO # Provides: schelet # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Schelet serviciu # Description: Schelet serviciu ### END INIT INFO case "$1" in start) echo "Starting schelet" ;; stop) echo "Stopping schelet" ;; status) echo "Schelet is running (or not)" ;; *) echo "Usage: /etc/init.d/schelet {start|stop|status}" exit 1 ;; esac exit 0