summaryrefslogtreecommitdiff
path: root/dh_installcron
diff options
context:
space:
mode:
authorjoey <joey>2000-07-09 07:58:59 +0000
committerjoey <joey>2000-07-09 07:58:59 +0000
commite702c234c31cb9c2f42876deaf5a0605d1123702 (patch)
tree89e7dd6935196bbb6db5fccb3e9e056d6fc2ab88 /dh_installcron
parent96c71ece85e8c03ca64f77cf47b0de1222649428 (diff)
r357: * Added dh_installlogrotate. Yuck, 3 l's, but I want to folow my
standard..
Diffstat (limited to 'dh_installcron')
-rwxr-xr-xdh_installcron6
1 files changed, 4 insertions, 2 deletions
diff --git a/dh_installcron b/dh_installcron
index 149c3d91..7f23bc45 100755
--- a/dh_installcron
+++ b/dh_installcron
@@ -11,7 +11,8 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
$cron=pkgfile($PACKAGE,"cron.$type");
if ($cron) {
if (! -d "$TMP/etc/cron.$type") {
- doit("install","-o","root","-g","root","-d","$TMP/etc/cron.$type");
+ doit("install","-o","root","-g","root","-d",
+ "$TMP/etc/cron.$type");
}
doit("install",$cron,"$TMP/etc/cron.$type/$PACKAGE");
}
@@ -20,7 +21,8 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
$cron=pkgfile($PACKAGE,"cron.d");
if ($cron) {
if (! -d "$TMP/etc/cron.d") {
- doit("install","-o","root","-g","root","-d","$TMP/etc/cron.d");
+ doit("install","-o","root","-g","root","-d",
+ "$TMP/etc/cron.d");
}
doit("install","-m",644,$cron,"$TMP/etc/cron.d/$PACKAGE");
}