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

13 lines
188 B
Bash
Executable File

#!/bin/sh
# Uncomment the following line to get debug info
#set -x
# Check args
if [ ${#} -ne 0 ]; then
echo "Usage: $(basename ${0})"
exit 1
fi
rm -f /var/run/funkey.pid
exit 0