From e702c234c31cb9c2f42876deaf5a0605d1123702 Mon Sep 17 00:00:00 2001 From: joey Date: Sun, 9 Jul 2000 07:58:59 +0000 Subject: [PATCH] r357: * Added dh_installlogrotate. Yuck, 3 l's, but I want to folow my standard.. --- debian/changelog | 7 +++++++ dh_installcron | 6 ++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 09fcf7c..ac2c3b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (2.0.103) unstable; urgency=low + + * Added dh_installlogrotate. Yuck, 3 l's, but I want to folow my + standard.. + + -- Joey Hess Sun, 9 Jul 2000 00:51:03 -0700 + debhelper (2.0.102) unstable; urgency=low * Documented the full list of extra files dh_clean deletes, since people diff --git a/dh_installcron b/dh_installcron index 149c3d9..7f23bc4 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"); } -- 2.39.5