summaryrefslogtreecommitdiff
path: root/dh_installcron
diff options
context:
space:
mode:
authorjoey <joey>2001-02-09 00:57:53 +0000
committerjoey <joey>2001-02-09 00:57:53 +0000
commit053f6f8b4e7431d32511aef209188a084e8c7e79 (patch)
tree209a51c8c8fdbcce25c834198f1b3ef705dcb5b0 /dh_installcron
parentae0346306694bb2c52193f6352755c223e6e8935 (diff)
r420: big monsta changes
Diffstat (limited to 'dh_installcron')
-rwxr-xr-xdh_installcron23
1 files changed, 12 insertions, 11 deletions
diff --git a/dh_installcron b/dh_installcron
index 47ef6943..0ebb4b56 100755
--- a/dh_installcron
+++ b/dh_installcron
@@ -2,26 +2,27 @@
#
# Install cron scripts into the appropriate places.
+use strict;
use Debian::Debhelper::Dh_Lib;
init();
-foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
- $TMP=tmpdir($PACKAGE);
- foreach $type (qw{daily weekly monthly}) {
- $cron=pkgfile($PACKAGE,"cron.$type");
+foreach my $package (@{$dh{DOPACKAGES}}) {
+ my $tmp=tmpdir($package);
+ foreach my $type (qw{daily weekly monthly}) {
+ my $cron=pkgfile($package,"cron.$type");
if ($cron) {
- if (! -d "$TMP/etc/cron.$type") {
- doit("install","-o",0,"-g",0,"-d","$TMP/etc/cron.$type");
+ if (! -d "$tmp/etc/cron.$type") {
+ doit("install","-o",0,"-g",0,"-d","$tmp/etc/cron.$type");
}
- doit("install",$cron,"$TMP/etc/cron.$type/$PACKAGE");
+ doit("install",$cron,"$tmp/etc/cron.$type/$package");
}
}
# Seperate because this needs to be mode 644.
- $cron=pkgfile($PACKAGE,"cron.d");
+ my $cron=pkgfile($package,"cron.d");
if ($cron) {
- if (! -d "$TMP/etc/cron.d") {
- doit("install","-o",0,"-g",0,"-d","$TMP/etc/cron.d");
+ if (! -d "$tmp/etc/cron.d") {
+ doit("install","-o",0,"-g",0,"-d","$tmp/etc/cron.d");
}
- doit("install","-m",644,$cron,"$TMP/etc/cron.d/$PACKAGE");
+ doit("install","-m",644,$cron,"$tmp/etc/cron.d/$package");
}
}