#!/bin/sh
# skip root disk here, will be handled in /etc/init.d/fs
rootdisk=$(readlink /dev/root)
if [ "x${rootdisk}" = "x${MDEV}" ];then
	exit 0
fi
uuid=$(blkid /dev/${MDEV} | sed -n '/^.*UUID="\([^"]*\)".*$/s//\1/p')
if [ -z $uuid ];then
	fs=$(grep "^/dev/${MDEV}[[:blank:]]" /etc/fstab | awk '{ print $3 }')
	mnt=$(grep "^/dev/${MDEV}[[:blank:]]" /etc/fstab | awk '{ print $2 }')
	disk="${MDEV}"
else
	fs=$(grep "^/dev/${MDEV}[[:blank:]]\|^UUID=$uuid" /etc/fstab | awk '{ print $3 }')
	mnt=$(grep "^/dev/${MDEV}[[:blank:]]\|^UUID=$uuid" /etc/fstab | awk '{ print $2 }')
	disk="${MDEV} (${uuid})"
fi
if [ -z $fs ];then
	logger "Disk $disk not registered in /etc/fstab"
	exit 0
fi

procfs=$fs
if [ $fs = "ntfs-3g" ];then
	procfs=fuse
fi

# filesystem check
adk_fsck() {
	[ -x /usr/sbin/fsck.$fs ] && {
		logger -s "Checking $fs filesystem on $disk"
			fsck -p -t $fs ${MDEV}
	}
}

# mount filesystem
adk_mount() {
	mkdir -p $mnt >/dev/null 2>&1
	grep $procfs /proc/filesystems >/dev/null 2>&1
	if [ $? -eq 0 ];then
		logger -s "Mounting $disk to $mnt"
		mount $mnt
		if [ $? -ne 0 ];then
			logger -s "Mounting $disk failed"
		fi
	else
		logger -s "Required filesystem $procfs not available"
	fi
}

case "${ACTION}" in
add)
	logger "Device ${MDEV} added to the system"
	adk_fsck
	adk_mount
	;;
esac
exit 0
