Skip to content

Instantly share code, notes, and snippets.

@timjp87
Created February 16, 2016 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timjp87/bf7756aa1f1b6694f82d to your computer and use it in GitHub Desktop.
Save timjp87/bf7756aa1f1b6694f82d to your computer and use it in GitHub Desktop.
post_install() {
EXTRAMODULES='extramodules-4.4-ARCH'
# Update module dependencies for all kernels
for _kernel in $(cat /usr/lib/modules/extramodules-*/version); do
depmod $_kernel
done
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment