diff options
-rwxr-xr-x | meta/recipes-bsp/acpid/acpid/init | 4 |
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 if [ ! -d /etc/acpi/events ]; then echo "There is not any rule configuration file." else - start-stop-daemon -S -x /usr/sbin/acpid -- -c /etc/acpi/events + start-stop-daemon -o -S -x /usr/sbin/acpid -- -c /etc/acpi/events echo "acpid." fi ;; stop) echo -n "Stopping Advanced Configuration and Power Interface daemon: " - start-stop-daemon -K -x /usr/sbin/acpid + start-stop-daemon -o -K -x /usr/sbin/acpid echo "acpid." ;; restart|force-reload) |