File: postinst

package info (click to toggle)
zapping 0.10~cvs6-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 9,856 kB
  • ctags: 11,841
  • sloc: ansic: 111,154; asm: 11,770; sh: 9,812; xml: 2,742; makefile: 1,283; perl: 488
file content (13 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -e


if [ "$1" = configure ]; then
	# create v4l devices ?
	if [ ! -d /dev/v4l -o ! -c /dev/video0 ]; then
	(cd /dev;/sbin/MAKEDEV v4l)
	fi
fi

#DEBHELPER#

exit 0