diff options
author | joey <joey> | 2004-03-29 04:07:55 +0000 |
---|---|---|
committer | joey <joey> | 2004-03-29 04:07:55 +0000 |
commit | bac2b0b6d3da08c51838fa51b0d33e703115fcde (patch) | |
tree | 9d6839f6b18bcaaf328c34d67a9de0be64bb68ea | |
parent | f8a1c2d217cf3017a565bdd5e3881acdfd88de15 (diff) | |
download | debhelper-bac2b0b6d3da08c51838fa51b0d33e703115fcde.tar.gz |
r1676: 4.2.7
-rwxr-xr-x | dh_installcron | 5 |
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") { |