mkimage-profiles/features.in/no-sleep/rootfs/image-scripts.d/50-no-sleep-systemd
Anton Midyukov 482e11ab9d no-sleep: initial feature
This feature disabled suspend, sleep, hibernation mode.
2020-05-22 13:34:34 +07:00

14 lines
211 B
Bash
Executable File

#!/bin/sh -efu
sleepconf=/etc/systemd/sleep.conf
test ! -f "$sleepconf" && exit || :
cat >> "$sleepconf" <<EOF
AllowSuspend=no
AllowHibernation=no
AllowSuspendThenHibernate=no
AllowHybridSleep=no
EOF
exit $?