Created
July 20, 2012 12:48
Revisions
-
jcberthon created this gist
Jul 20, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ #!/bin/sh ### BEGIN INIT INFO # Provides: nothing # Required-Start: $all # Default-Start: 3 5 # Default-Stop: 4 # Short-Description: single_line_description # Description: multiline_description ### END INIT INFO case "$1" in start) echo -n "Starting TEST daemon" echo "Test" >> /var/tmp/test ;; stop) echo -n "Shutting down CRON daemon" echo "Ciao..." >> /var/tmp/test ;; *) echo "Usage: $0 {start|stop}" exit 1 ;; esac exit 0