diff options
| author | ruki <[email protected]> | 2017-04-07 09:53:29 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-04-07 09:53:29 +0800 |
| commit | 3085ff44c910916e6378982f14a9bbf2bcbe50ac (patch) | |
| tree | 44df0acc22951703b8ee9ff2861bbd14ac95bcbb /scripts/debian/init.d.ex | |
| parent | 9f65a2f1b69d54a4d15d135f4b3058a989a57429 (diff) | |
add makeppa script and debian
Diffstat (limited to 'scripts/debian/init.d.ex')
| -rw-r--r-- | scripts/debian/init.d.ex | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/debian/init.d.ex b/scripts/debian/init.d.ex new file mode 100644 index 000000000..9f21c5672 --- /dev/null +++ b/scripts/debian/init.d.ex @@ -0,0 +1,26 @@ +#!/bin/sh +# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing. +if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then + set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script +fi +### BEGIN INIT INFO +# Provides: xmake +# Required-Start: $remote_fs $syslog +# Required-Stop: $remote_fs $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: <Enter a short description of the software> +# Description: <Enter a long description of the software> +# <...> +# <...> +### END INIT INFO + +# Author: ruki <[email protected]> + +DESC="xmake" +DAEMON=/usr/bin/xmake + +# This is an example to start a single forking daemon capable of writing +# a pid file. To get other behaviors, implement do_start(), do_stop() or +# other functions to override the defaults in /lib/init/init-d-script. +# See also init-d-script(5) |
