summaryrefslogtreecommitdiffstats
path: root/dh_installcron
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 10:17:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 10:17:26 +0000
commit36b03e2bee4497aef85033f4f900f5d89d5dc55e (patch)
treeec9a0e0972bd08cc628efaa53161b44f9361dd37 /dh_installcron
parentAdding debian version 13.16. (diff)
downloaddebhelper-36b03e2bee4497aef85033f4f900f5d89d5dc55e.tar.xz
debhelper-36b03e2bee4497aef85033f4f900f5d89d5dc55e.zip
Merging upstream version 13.17.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-xdh_installcron9
1 files changed, 8 insertions, 1 deletions
diff --git a/dh_installcron b/dh_installcron
index 9325b0e..209d5f1 100755
--- a/dh_installcron
+++ b/dh_installcron
@@ -63,7 +63,14 @@ init();
foreach my $package (@{$dh{DOPACKAGES}}) {
my $tmp=tmpdir($package);
foreach my $type (qw{hourly daily weekly monthly yearly}) {
- my $cron=pkgfile($package,"cron.$type");
+ my $cron=pkgfile(
+ {
+ 'named' => 1,
+ 'support-architecture-restriction' => 0,
+ },
+ $package,
+ "cron.$type",
+ );
if ($cron) {
install_dir("$tmp/etc/cron.$type");
install_prog($cron,"$tmp/etc/cron.$type/".pkgfilename($package));