Comment 20 for bug 92091

Revision history for this message
Patricio (patricio-stwing) wrote :

Mine looks like this:

#!/bin/bash
for SCRIPT in /etc/acpi/suspend.d/*.sh; do
    if [ -x $SCRIPT ]; then
 . $SCRIPT
    fi
done

Should I add "umount /media/[NAME OF DRIVE]" after all that?

Is this the reason for bug 230671?

Thanks ( I am new)
Patricio