IDE hdd standby (hdparm)
Brought to you by:
pxesadm,
software2x
Please add turning off HDD to rc scripts (by default?).
Currently it can be achived with following local config
(reposted from forum):
# put HDD to standby mode (silence!)
tftp $CONFIGURATION_SERVER_NAME > /dev/null <<!
timeout 10
binary
get /pxes/hdparm /tmp/hdparm
!
chmod a+x /tmp/hdparm
modprobe ide-disk
[ -b /dev/ide/host0/bus0/target0/lun0/disc ] &&
/tmp/hdparm -Y /dev/ide/host0/bus0/target0/lun0/disc
>/dev/null