diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-01-29 18:15:55 +0000 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-01-29 18:15:55 +0000 |
commit | ce29fd6f30e02fb5caf9e0a6ee409f387dbd1220 (patch) | |
tree | 023a22ea3b6dd3fa5f4dcf81f8c42f1c4c7b9a11 /debian_package/setnet-0.3/debian/init.d.ex | |
parent | 33a4c4b01bd9aacec19533add10884171b608f5b (diff) |
Deb package version 0.3release-0.3
Diffstat (limited to 'debian_package/setnet-0.3/debian/init.d.ex')
-rw-r--r-- | debian_package/setnet-0.3/debian/init.d.ex | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/debian_package/setnet-0.3/debian/init.d.ex b/debian_package/setnet-0.3/debian/init.d.ex new file mode 100644 index 0000000..08360e2 --- /dev/null +++ b/debian_package/setnet-0.3/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: setnet +# 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: Vincenzo (KatolaZ) Nicosia <katolaz@freaknet.org> + +DESC="setnet" +DAEMON=/usr/bin/setnet + +# 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) |