diff options
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postinst-modules | 7 | ||||
-rw-r--r-- | autoscripts/postrm-modules | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/autoscripts/postinst-modules b/autoscripts/postinst-modules index 8d2c4cbc..11c206bc 100644 --- a/autoscripts/postinst-modules +++ b/autoscripts/postinst-modules @@ -1,3 +1,6 @@ -if [ "$1" = "configure" ] && [ -x "`which update-modules 2>/dev/null`" ]; then - update-modules >/dev/null || [ "$?" = 3 ] +if [ "$1" = "configure" ]; then + if [ -x "`which update-modules 2>/dev/null`" ]; then + update-modules >/dev/null || [ "$?" = 3 ] + fi + depmod -a || true fi diff --git a/autoscripts/postrm-modules b/autoscripts/postrm-modules index 35db8718..bcacb9f5 100644 --- a/autoscripts/postrm-modules +++ b/autoscripts/postrm-modules @@ -1,3 +1,4 @@ if [ -x "`which update-modules 2>/dev/null`" ]; then update-modules >/dev/null || [ "$?" = 3 ] fi +depmod -a || true |