8 lines
156 B
Plaintext
8 lines
156 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. /etc/functions.sh
|
||
|
|
||
|
if [ "$ACTION" = add ] && [ "$DEVICENAME" = event0 ]; then
|
||
|
( /etc/init.d/acpid/stop; sleep 3; /usr/sbin/acpid )&
|
||
|
fi
|