]> git.donarmstrong.com Git - debhelper.git/blob - dh_installcron
7f23bc45f4d438f974f6c537dbbe998978cb5bbc
[debhelper.git] / dh_installcron
1 #!/usr/bin/perl -w
2 #
3 # Install cron scripts into the appropriate places.
4
5 use Debian::Debhelper::Dh_Lib;
6 init();
7
8 foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
9         $TMP=tmpdir($PACKAGE);
10         foreach $type (qw{daily weekly monthly}) {
11                 $cron=pkgfile($PACKAGE,"cron.$type");
12                 if ($cron) {
13                         if (! -d "$TMP/etc/cron.$type") {
14                                 doit("install","-o","root","-g","root","-d",
15                                      "$TMP/etc/cron.$type");
16                         }
17                         doit("install",$cron,"$TMP/etc/cron.$type/$PACKAGE");
18                 }
19         }
20         # Seperate because this needs to be mode 644.
21         $cron=pkgfile($PACKAGE,"cron.d");
22         if ($cron) {
23                 if (! -d "$TMP/etc/cron.d") {
24                         doit("install","-o","root","-g","root","-d",
25                              "$TMP/etc/cron.d");
26                 }       
27                 doit("install","-m",644,$cron,"$TMP/etc/cron.d/$PACKAGE");
28         }
29 }