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/init4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-bsp/acpid/acpid/init b/meta/recipes-bsp/acpid/acpid/init
index 726d9ffd9e..40ff385c10 100755
--- a/meta/recipes-bsp/acpid/acpid/init
+++ b/meta/recipes-bsp/acpid/acpid/init
@@ -10,13 +10,13 @@ case "$1" in
10 if [ ! -d /etc/acpi/events ]; then 10 if [ ! -d /etc/acpi/events ]; then
11 echo "There is not any rule configuration file." 11 echo "There is not any rule configuration file."
12 else 12 else
13 start-stop-daemon -S -x /usr/sbin/acpid -- -c /etc/acpi/events 13 start-stop-daemon -o -S -x /usr/sbin/acpid -- -c /etc/acpi/events
14 echo "acpid." 14 echo "acpid."
15 fi 15 fi
16 ;; 16 ;;
17 stop) 17 stop)
18 echo -n "Stopping Advanced Configuration and Power Interface daemon: " 18 echo -n "Stopping Advanced Configuration and Power Interface daemon: "
19 start-stop-daemon -K -x /usr/sbin/acpid 19 start-stop-daemon -o -K -x /usr/sbin/acpid
20 echo "acpid." 20 echo "acpid."
21 ;; 21 ;;
22 restart|force-reload) 22 restart|force-reload)