FunKey-OS/FunKey/board/funkey/rootfs-overlay/usr/local/sbin/cancel_sched_powerdown

12 lines
170 B
Bash
Executable File

#!/bin/sh
# Uncomment the following line to get debug info
#set -x
if [ ${#} != 0 ]; then
echo "Usage: $(basename ${0})"
exit 1
fi
pkill sched_powerdown
exit 0