Creality-Helper-Script/files/fixes/systemctl
2024-03-10 21:45:05 +01:00

7 lines
No EOL
109 B
Bash
Executable file

#!/bin/sh
if [ "$1" == "reboot" ]; then
/sbin/reboot
elif [ "$1" == "poweroff" ]; then
/sbin/poweroff
fi