summaryrefslogtreecommitdiff
path: root/pm/sleep.d/00logging
blob: fd2a9a88a85f8163d361291ac896e7701a091e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

. "${PM_FUNCTIONS}"

case "$1" in
        hibernate|suspend*)
		[ -n "$PM_LOGFILE" ] || exit 0
		/bin/uname -a
		lsmod
		free
		;;
esac