7 lines
81 B
Bash
Executable file
7 lines
81 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ "${ACTION}" = "released" ] || exit 0
|
|
|
|
exec /sbin/poweroff
|
|
|
|
return 0
|