diff options
Diffstat (limited to 'etc/pm/config.d/sleep.d/50_hdparm-pm')
-rwxr-xr-x | etc/pm/config.d/sleep.d/50_hdparm-pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/etc/pm/config.d/sleep.d/50_hdparm-pm b/etc/pm/config.d/sleep.d/50_hdparm-pm new file mode 100755 index 0000000..1082243 --- /dev/null +++ b/etc/pm/config.d/sleep.d/50_hdparm-pm @@ -0,0 +1,14 @@ +#!/bin/sh + +. "${PM_FUNCTIONS}" + +case "$1" in + thaw|resume) + sleep 2 + hdparm -B 255 /dev/sdb + ;; + *) + ;; +esac + +exit $NA |