summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/debian/init
diff options
context:
space:
mode:
Diffstat (limited to 't/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/debian/init')
-rw-r--r--t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/debian/init27
1 files changed, 27 insertions, 0 deletions
diff --git a/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/debian/init b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/debian/init
new file mode 100644
index 0000000..90c5dc7
--- /dev/null
+++ b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/debian/init
@@ -0,0 +1,27 @@
+#!/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: init.d-script-contains-skeleton-template-content
+# Required-Start: $remote_fs $syslog
+# Required-Stop: $remote_fs $syslog
+# Default-Start: 2 3 4 5
+# Default-Stop: 0 1 6
+# Short-Description: Example initscript
+# Description: This file should be used to construct scripts to be
+# placed in /etc/init.d. This example start a
+# single forking daemon capable of writing a pid
+# file. To get other behavoirs, implemend
+# do_start(), do_stop() or other functions to
+# override the defaults in /lib/init/init-d-script.
+### END INIT INFO
+
+# Author: Foo Bar <foobar@baz.org>
+#
+# Please remove the "Author" lines above and replace them
+# with your own name if you copy and modify this script.
+
+DESC="Description of the service"
+DAEMON=/usr/sbin/daemonexecutablename