diff options
author | joey <joey> | 2000-09-17 21:42:52 +0000 |
---|---|---|
committer | joey <joey> | 2000-09-17 21:42:52 +0000 |
commit | c9e08fed467c2ff1a0ed92b49c54cfd6ca72cd02 (patch) | |
tree | de6f9de095e07d5bda88dc474c59f091ba3f095e /autoscripts | |
parent | bcf662004e506ccce41f48bd2a6b878533c93097 (diff) |
r370: * dh_installmodules: corrected the code added to maintainer scripts so it
does not call depmod -a. update-modules (which it always called)_
handles calling depmod if doing so is appropriate. Packages built with
proir versions probably have issues on systems with non-modular
kernels, and should be rebuilt. Closes: #71841
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postinst-modules | 1 | ||||
-rw-r--r-- | autoscripts/postrm-modules | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/autoscripts/postinst-modules b/autoscripts/postinst-modules index 64b8eb0..a7e7c77 100644 --- a/autoscripts/postinst-modules +++ b/autoscripts/postinst-modules @@ -1,4 +1,3 @@ if [ "$1" = "configure" ]; then update-modules - depmod -a fi diff --git a/autoscripts/postrm-modules b/autoscripts/postrm-modules index a8f4ce7..7abe0c0 100644 --- a/autoscripts/postrm-modules +++ b/autoscripts/postrm-modules @@ -1,2 +1 @@ update-modules -depmod -a |