File: postinst

package info (click to toggle)
gradm2 2.1.5-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 432 kB
  • ctags: 707
  • sloc: ansic: 6,697; yacc: 996; lex: 920; makefile: 164; sh: 30
file content (13 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -e

. /usr/share/debconf/confmodule

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

#DEBHELPER#

exit 0