mkimage-profiles/features.in/no-sleep/rootfs/image-scripts.d/50-no-sleep-systemd

14 lines
211 B
Plaintext
Raw Normal View History

#!/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 $?