aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/lsb/lsb/init-functions
diff options
context:
space:
mode:
authorXiaofeng Yan <xiaofeng.yan@windriver.com>2011-05-10 16:30:16 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-11 16:41:22 +0100
commit5c846091b034fff21333487df4ada5667eb8e247 (patch)
treecc723e6135987e9119e1174f0e0ed2c46c846a83 /meta/recipes-extended/lsb/lsb/init-functions
parent2fd69dbdb44b29116c3dbdab5a63b16ae76f2062 (diff)
downloadopenembedded-core-contrib-5c846091b034fff21333487df4ada5667eb8e247.tar.gz
init-functions: Conforming applications may install one or more initialization scripts
LSB Test Suite need init scripts for lsb-image. During the installer's post-install processing phase the program /usr/lib/lsb/install_initd \ must be called to activate the init script. \ When a software package is removed, /usr/lib/lsb/remove_initd \ must be called to deactivate the init script. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Diffstat (limited to 'meta/recipes-extended/lsb/lsb/init-functions')
-rwxr-xr-xmeta/recipes-extended/lsb/lsb/init-functions32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-extended/lsb/lsb/init-functions b/meta/recipes-extended/lsb/lsb/init-functions
new file mode 100755
index 0000000000..bf424dde1c
--- /dev/null
+++ b/meta/recipes-extended/lsb/lsb/init-functions
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+# LSB initscript functions, as defined in the LSB Spec 1.1.0
+#
+# Lawrence Lim <llim@core.com> - Tue, 26 June 2007
+# Updated to the latest LSB 3.1 spec
+# http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic_lines.txt
+
+start_daemon () {
+ /etc/core-lsb/lsb_start_daemon "$@"
+}
+
+killproc () {
+ /etc/core-lsb/lsb_killproc "$@"
+}
+
+pidofproc () {
+ /etc/core-lsb/lsb_pidofproc "$@"
+}
+
+log_success_msg () {
+ /etc/core-lsb/lsb_log_message success "$@"
+}
+
+log_failure_msg () {
+ /etc/core-lsb/lsb_log_message failure "$@"
+}
+
+log_warning_msg () {
+ /etc/core-lsb/lsb_log_message warning "$@"
+}
+