~ubuntu-branches/ubuntu/feisty/comedilib/feisty

« back to all changes in this revision

Viewing changes to debian/libcomedi0.postinst

  • Committer: Bazaar Package Importer
  • Author(s): David Schleef
  • Date: 2003-09-23 18:11:12 UTC
  • Revision ID: james.westby@ubuntu.com-20030923181112-sat05jyh702rb1at
Tags: upstream-0.7.21
ImportĀ upstreamĀ versionĀ 0.7.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
if [ "$1" = "configure" ]; then
 
4
        if [ ! -e "/dev/comedi0" ];then
 
5
                echo "Creating /dev/comediN device nodes"
 
6
                cd /dev && MAKEDEV comedi
 
7
        fi
 
8
fi
 
9
 
 
10
#DEBHELPER#
 
11
 
 
12
exit 0
 
13