diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:26 +0000 |
commit | 36b03e2bee4497aef85033f4f900f5d89d5dc55e (patch) | |
tree | ec9a0e0972bd08cc628efaa53161b44f9361dd37 /dh_installcron | |
parent | Adding debian version 13.16. (diff) | |
download | debhelper-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-x | dh_installcron | 9 |
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)); |