Projet

Général

Profil

Télécharger (274 octets) Statistiques
| Branche: | Tag: | Révision:

univnautes / etc / rc.disable_hdd_apm @ master

1
#!/bin/sh
2

    
3
ATAIDLE=/usr/local/sbin/ataidle
4
for i in /dev/ad?; do
5
	if [ ! -e ${i} ]; then
6
		continue;
7
	fi
8
	SUPPORTED=`${ATAIDLE} ${i} | grep "APM Supported" | awk '{print $3;}'`
9
	if [ "${SUPPORTED}" = "yes" ] ; then
10
		echo Disabling APM on $i
11
		${ATAIDLE} -P 0 ${i}
12
	fi
13
done
(42-42/103)