~ubuntu-installer/wubi/hardy

344 by ago
Fixed local-botton/ntfs-3g (livecd and initrd) so that it correctly signals ntfs_3g processes to be skept via sendsigs.omit
1
#! /bin/sh
2
# This script has to be in init-bottom (before udev), not local-bottom, 
3
# since it is called by casper
4
5
case $1 in
6
prereqs)
7
        exit 0
8
        ;;
9
esac
10
11
mkdir -p /dev/.initramfs/varrun
12
13
#for some reason it does not work with /sbin/mount.ntfs
14
pidof mount.ntfs >> /dev/.initramfs/varrun/sendsigs.omit
15
pidof mount.ntfs-3g >> /dev/.initramfs/varrun/sendsigs.omit
16
17
exit 0