rc: remove atadile usage, dates back to being hip in 2008-2012

This commit is contained in:
Franco Fichtner 2016-04-10 18:24:46 +02:00
parent 66f0288afd
commit 117c292ee8
2 changed files with 0 additions and 16 deletions

View File

@ -56,7 +56,6 @@ CORE_MAINTAINER?= franco@opnsense.org
CORE_WWW?= https://opnsense.org/
CORE_MESSAGE?= ACME delivery for the crafty coyote!
CORE_DEPENDS?= apinger \
ataidle \
beep \
bind910 \
bsdinstaller \

View File

@ -88,21 +88,6 @@ if [ ! -f /usr/local/openssl/openssl.cnf ]; then
echo "done."
fi
# Disable APM on ATA drives. Leaving this on will kill
# drives long-term, especially laptop drives, by generating
# excessive load cycles.
ATAIDLE=/usr/local/sbin/ataidle
for i in /dev/ad?; do
if [ ! -e ${i} ]; then
continue;
fi
SUPPORTED=`${ATAIDLE} ${i} | grep "APM Supported" | awk '{print $3;}'`
if [ "${SUPPORTED}" = "yes" ] ; then
echo Disabling APM on $i
${ATAIDLE} -P 0 ${i}
fi
done
#Eject CD devices on 3G modems
MANUFACTURER="huawei|zte"
CDDEVICE=`dmesg |egrep -ie "($MANUFACTURER)" | awk -F: '/cd/ {print $1}'`