diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:42:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:42:30 +0000 |
commit | 75808db17caf8b960b351e3408e74142f4c85aac (patch) | |
tree | 7989e9c09a4240248bf4658a22208a0a52d991c4 /t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content | |
parent | Initial commit. (diff) | |
download | lintian-75808db17caf8b960b351e3408e74142f4c85aac.tar.xz lintian-75808db17caf8b960b351e3408e74142f4c85aac.zip |
Adding upstream version 2.117.0.upstream/2.117.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 't/recipes/checks/init-d/init.d-script-contains-skeleton-template-content')
4 files changed, 33 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 diff --git a/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/fill-values b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/fill-values new file mode 100644 index 0000000..f0ac8fa --- /dev/null +++ b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/build-spec/fill-values @@ -0,0 +1,3 @@ +Skeleton: upload-native +Testname: init.d-script-contains-skeleton-template-content +Description: Test for scripts using the /etc/init.d/skeleton template diff --git a/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/eval/desc b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/eval/desc new file mode 100644 index 0000000..41a721e --- /dev/null +++ b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/eval/desc @@ -0,0 +1,2 @@ +Testname: init.d-script-contains-skeleton-template-content +Check: init-d diff --git a/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/eval/hints b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/eval/hints new file mode 100644 index 0000000..963590d --- /dev/null +++ b/t/recipes/checks/init-d/init.d-script-contains-skeleton-template-content/eval/hints @@ -0,0 +1 @@ +init.d-script-contains-skeleton-template-content (binary): init.d-script-contains-skeleton-template-content [etc/init.d/init.d-script-contains-skeleton-template-content:23] |