mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
13 lines
157 B
Plaintext
13 lines
157 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
KMODDIR="%%KMODDIR%%"
|
||
|
|
||
|
if [ "$2" != "POST-INSTALL" ]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
type kldxref >/dev/null 2>&1 && kldxref ${KMODDIR} || true
|