#!/bin/sh

/bin/chown 0:0 /opt/bin/fusermount
/bin/chmod 4755 /opt/bin/fusermount

if [ ! -c /dev/fuse ]; then
	rm -f /dev/fuse
	/bin/mknod /dev/fuse c 10 229
	chmod 644 /dev/fuse
fi
