summarylogtreecommitdiffstats
path: root/install
blob: a2e1f9037c598fff72b8776cc703b298d6cc6001 (plain)
1
2
3
4
5
6
7
8
9
10
11
post_upgrade() {
	for i in /usr/lib/modules/extramodules-*; do
		if [[ -f "$i/version" ]]; then
			depmod "$(cat "$i"/version)"
		fi
	done
}

post_install() {
	post_upgrade
}