| 1 |
8 |
ahitrov@rambler.ru |
#!/usr/bin/perl |
| 2 |
|
|
|
| 3 |
|
|
use strict; |
| 4 |
|
|
use warnings "all"; |
| 5 |
|
|
use locale; |
| 6 |
|
|
|
| 7 |
|
|
use FindBin; |
| 8 |
|
|
BEGIN { |
| 9 |
|
|
require "$FindBin::RealBin/../lib/Modules.pm"; |
| 10 |
|
|
} |
| 11 |
|
|
|
| 12 |
|
|
use Contenido::Globals; |
| 13 |
|
|
use Contenido::Init; |
| 14 |
|
|
use ErrorTee; |
| 15 |
|
|
use PidFile; |
| 16 |
|
|
|
| 17 |
|
|
|
| 18 |
|
|
# begin |
| 19 |
|
|
Contenido::Init->init(); |
| 20 |
|
|
|
| 21 |
|
|
my $keeper_module = $state->project.'::Keeper'; |
| 22 |
|
|
$keeper = $keeper_module->new($state); |
| 23 |
|
|
|
| 24 |
|
|
#PidFile->new($keeper, compat=>1); # db-based locking (run only on one host) |
| 25 |
|
|
#PidFile->new($keeper, compat=>1, per_host=>1); # db-based locking (run on whole cluster) |
| 26 |
|
|
|
| 27 |
|
|
############################################ |
| 28 |
|
|
# please use: |
| 29 |
|
|
# $state->{log_dir} for logging |
| 30 |
|
|
# $state->{tmp_dir} for temporary files |
| 31 |
|
|
########################################### |