]> git.donarmstrong.com Git - debhelper.git/commitdiff
r357: * Added dh_installlogrotate. Yuck, 3 l's, but I want to folow my
authorjoey <joey>
Sun, 9 Jul 2000 07:58:59 +0000 (07:58 +0000)
committerjoey <joey>
Sun, 9 Jul 2000 07:58:59 +0000 (07:58 +0000)
     standard..

debian/changelog
dh_installcron

index 09fcf7c686078f1508ddbd1f0ed6f98e04c3e974..ac2c3b02254b49ec51a7a4d8a16fca14da2b2126 100644 (file)
@@ -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 <joeyh@debian.org>  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
index 149c3d91bbe8f020f4f35deb79437286c00833f5..7f23bc45f4d438f974f6c537dbbe998978cb5bbc 100755 (executable)
@@ -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");
        }