summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-modules
blob: 11c206bc8cd8504f917d562cb332ee8303848f35 (plain)
1
2
3
4
5
6
if [ "$1" = "configure" ]; then
	if [ -x "`which update-modules 2>/dev/null`" ]; then
		update-modules >/dev/null || [ "$?" = 3 ]
	fi
	depmod -a || true
fi