12,297
edits
Line 35: | Line 35: | ||
#! /bin/sh | #! /bin/sh | ||
### BEGIN INIT INFO | ### BEGIN INIT INFO | ||
# Provides: Pd patch startup | # Provides: Pd patch startup | ||
# Required-Start: $syslog | # Required-Start: $syslog | ||
# Required-Stop: $syslog | # Required-Stop: $syslog | ||
# Default-Start: 2 3 4 5 | # Default-Start: 2 3 4 5 | ||
# Default-Stop: 0 1 6 | # Default-Stop: 0 1 6 | ||
# Short-Description: Pure Data Patch startup | # Short-Description: Pure Data Patch startup | ||
# Description: | # Description: | ||
### END INIT INFO | ### END INIT INFO | ||
case "$1" in | case "$1" in | ||
start) | start) | ||
echo "ending Jack" | echo "ending Jack" | ||
Line 63: | Line 63: | ||
exit 1 | exit 1 | ||
;; | ;; | ||
esac | esac | ||
exit 0 | exit 0 |