I have been successfully using the following work-around.  I created a
/etc/init.d/mount-tmp script, appended here.  I then made /etc/rcS.d
/S38mount-tmp a symlink to the script.

#! /bin/sh

### BEGIN INIT INFO
# Provides: mount-tmp
# Required-Start: mountall
# Required-Stop: 
# Default-Start: S
# Default-Stop:
# Short-Description: mount /tmp
# Description:
# Ubuntu 9.10 ("Karmic") mountall fails to mount /tmp, which is an
# encrypted with random key partition.  This script mounts it.
### END INIT INFO

case "$1" in
    start)
        if [ -z "$(mount | grep ' /tmp ')" ]; then
            mount /tmp
        fi
esac

-- 
mountall 0.2.5 and cryptsetup fail to boot when using usplash
https://bugs.launchpad.net/bugs/456274
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to