summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/acpid/acpid/init
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/acpid/acpid/init')
-rwxr-xr-xmeta/recipes-bsp/acpid/acpid/init31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-bsp/acpid/acpid/init b/meta/recipes-bsp/acpid/acpid/init
new file mode 100755
index 0000000000..40ff385c10
--- /dev/null
+++ b/meta/recipes-bsp/acpid/acpid/init
@@ -0,0 +1,31 @@
1#! /bin/sh -e
2
3test -x /usr/sbin/acpid || exit 0
4test -d /proc/acpi || exit 0
5mkdir -p /etc/acpi/events
6
7case "$1" in
8 start)
9 echo -n "Starting Advanced Configuration and Power Interface daemon: "
10 if [ ! -d /etc/acpi/events ]; then
11 echo "There is not any rule configuration file."
12 else
13 start-stop-daemon -o -S -x /usr/sbin/acpid -- -c /etc/acpi/events
14 echo "acpid."
15 fi
16 ;;
17 stop)
18 echo -n "Stopping Advanced Configuration and Power Interface daemon: "
19 start-stop-daemon -o -K -x /usr/sbin/acpid
20 echo "acpid."
21 ;;
22 restart|force-reload)
23 $0 stop
24 $0 start
25 ;;
26 *)
27 echo "Usage: /etc/init.d/acpid {start|stop|restart|force-reload}"
28 exit 1
29esac
30
31exit 0