#!/bin/sh -e

. /usr/share/debconf/confmodule

if [ "$1" = configure ]; then
	if [ ! -c /dev/grsec ] && [ ! -c /dev/.devfsd ] && [ ! -f /dev/.udev.tdb ]; then
		mknod -m 0622 /dev/grsec c 1 12 || true
	fi
fi

#DEBHELPER#

exit 0
