This repository has been archived on 2022-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
libraw1394/debian/libraw1394.postinst.in
aeb 4c165f62db Add raw1394_get_local_id, _irm_id, _nodecount refentry.
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@73 53a565d1-3bb7-0310-b661-cf11e63c67ab
2001-08-01 12:30:48 +00:00

16 lines
282 B
Bash

#!/bin/sh -e
. /usr/share/debconf/confmodule
db_version 2.0
if [ "$1" = "configure" ]; then
db_get libraw1394/dev/create_node
if [ "$RET" = "true" ]; then
echo -n "Creating device node /dev/raw1394... "
cd /dev && ./MAKEDEV raw1394
echo "done."
fi
fi
#DEBHELPER#