[DAPPER Testing] DeviceConfig: Command not found
Inviato: lunedì 10 aprile 2006, 18:23
In fase di boot ho questo errore (quello nel titolo) relativo al file
Questo è il contenuto del file in questione
Questa è una distro upgradata da Breezy (sono su dapper), e su breezy non avevo questo errore. Tra l'altro da quando ho fatto il passaggio non mi è più funzionato lo spegnimento automatico (gestito da apm su breezy)...
Qualche idea su come risolvere questo problema?
Codice: Seleziona tutto
/etc/rc2.d/S05vbesave line 14Codice: Seleziona tutto
#!/bin/sh
test -x /usr/sbin/vbetool || exit 0
set -e
. /lib/lsb/init-functions
test -f /etc/default/rcS && . /etc/default/rcS
test -f /etc/default/acpi-support && . /etc/default/acpi-support
test -f /usr/share/acpi-support/device-funcs && . /usr/share/acpi-support/device-funcs
case "$1" in
start)
DeviceConfig [b]<- Line 14[/b]
if [ "$ACPI_SLEEP" = "true" ]; then
log_begin_msg "Saving VESA state..."
if [ "$SAVE_VBE_STATE" = "true" ]; then
if [ "$VERBOSE" = no ]; then
if ! vbetool vbestate save > $VBESTATE 2>/dev/null; then
log_end_msg $?
exit 1
fi
else
if ! vbetool vbestate save > $VBESTATE ; then
log_end_msg $?
exit 1
fi
fi
fi
log_end_msg 0
fi
;;
*)
exit 0
;;
esac
Qualche idea su come risolvere questo problema?