~ubuntu-branches/ubuntu/maverick/lire/maverick

« back to all changes in this revision

Viewing changes to all/script/lr_cron.in

  • Committer: Bazaar Package Importer
  • Author(s): Joost van Baal
  • Date: 2006-11-02 15:30:00 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20061102153000-343pa15n0rp58m1b
Tags: upstream-2.0.2
ImportĀ upstreamĀ versionĀ 2.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
eval {
44
44
    my $store = Lire::DlfStore->open( $store_path, 1 );
45
45
    foreach my $job ( @{ $store->import_jobs() } ) {
46
 
        $job->run( $store ) if $job->period() eq $period;
 
46
        $job->run( $store, $time ) if $job->period() eq $period;
47
47
    }
48
48
    foreach my $job ( @{ $store->report_jobs() } ) {
49
49
        $job->run( $store, $period, $time );
101
101
 
102
102
=head1 VERSION
103
103
 
104
 
$Id: lr_cron.in,v 1.34 2004/09/01 12:23:10 vanbaal Exp $
 
104
$Id: lr_cron.in,v 1.37 2006/07/23 13:16:32 vanbaal Exp $
105
105
 
106
106
=head1 COPYRIGHT
107
107
 
120
120
 
121
121
You should have received a copy of the GNU General Public License
122
122
along with this program (see COPYING); if not, check with
123
 
http://www.gnu.org/copyleft/gpl.html or write to the Free Software
124
 
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
 
123
http://www.gnu.org/copyleft/gpl.html.
125
124
 
126
125
=cut
127
126