summaryrefslogtreecommitdiff
path: root/dh_installcron
diff options
context:
space:
mode:
Diffstat (limited to 'dh_installcron')
-rwxr-xr-xdh_installcron5
1 files changed, 3 insertions, 2 deletions
diff --git a/dh_installcron b/dh_installcron
index 7de54574..409b59ea 100755
--- a/dh_installcron
+++ b/dh_installcron
@@ -18,7 +18,8 @@ B<dh_installcron> [S<B<debhelper options>>] [B<--name=>I<name>]
dh_installcron is a debhelper program that is responsible for installing
cron scripts into etc/cron.*/ in package build directories. The files
debian/package.cron.daily, debian/package.cron.weekly,
-debian/package.cron.monthly, and debian/package.cron.d are installed.
+debian/package.cron.monthly, debian/package.cron.hourly, and
+debian/package.cron.d are installed.
=head1 OPTIONS
@@ -38,7 +39,7 @@ init();
foreach my $package (@{$dh{DOPACKAGES}}) {
my $tmp=tmpdir($package);
- foreach my $type (qw{daily weekly monthly}) {
+ foreach my $type (qw{hourly daily weekly monthly}) {
my $cron=pkgfile($package,"cron.$type");
if ($cron) {
if (! -d "$tmp/etc/cron.$type") {