summaryrefslogtreecommitdiff
path: root/dh_installmodules
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2017-07-15 16:26:48 +0000
committerNiels Thykier <niels@thykier.net>2017-07-22 18:43:27 +0000
commit0ee893389e34bb39de7b6a41ff7f6e42ad0d3b12 (patch)
tree481f9a22884240360f4be81975d6e6230814d7d8 /dh_installmodules
parent1b9853af02064d0ad29f6b602652bab8b1157f53 (diff)
downloaddebhelper-0ee893389e34bb39de7b6a41ff7f6e42ad0d3b12.tar.gz
dh_*: Migrate most tools to new shell-less autoscript
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_installmodules')
-rwxr-xr-xdh_installmodules4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installmodules b/dh_installmodules
index 40d42336..46ef0241 100755
--- a/dh_installmodules
+++ b/dh_installmodules
@@ -100,8 +100,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
if (! $dh{NOSCRIPTS}) {
foreach my $kvers (find_kernel_modules("$tmp/lib/modules")) {
- autoscript($package,"postinst","postinst-modules","s/#KVERS#/$kvers/g");
- autoscript($package,"postrm","postrm-modules","s/#KVERS#/$kvers/g");
+ autoscript($package, 'postinst', 'postinst-modules', { 'KVERS' => $kvers });
+ autoscript($package, 'postrm', 'postrm-modules', { 'KVERS' => $kvers });
}
}
}