12 lines
167 B
Bash
12 lines
167 B
Bash
#!/bin/sh
|
|
|
|
# Policy says that the user should be asked before we do this.
|
|
cd /dev && MAKEDEV comedi
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = "configure" ]; then
|
|
ldconfig
|
|
fi
|
|
|
|
exit 0
|