| 1 |
<?php |
<?php |
| 2 |
$dbconn="dbname=dehs"; |
|
| 3 |
$base="/org/home/groups/dehs/dehs_prj/dehs/"; |
$dbconn = 'dbname=dehs host=localhost'; |
| 4 |
$dirs=array("diffs_dir"=>$base . "files/diffs", |
|
| 5 |
"sources_dir"=>$base. "files/sources", |
$base = '/org/home/groups/dehs/dehs_prj/dehs/'; |
| 6 |
"popcon_dir"=>$base . "files/popcon"); |
|
| 7 |
$dists=array( |
$dirs = array('diffs_dir' => $base . 'files/diffs', |
| 8 |
unstable=>array("main","contrib","non-free"), |
'sources_dir' => $base . 'files/sources', |
| 9 |
experimental=>array("main","contrib","non-free") |
'popcon_dir' => $base . 'files/popcon'); |
| 10 |
|
|
| 11 |
|
$dists = array( |
| 12 |
|
unstable => array('main','contrib','non-free'), |
| 13 |
|
experimental => array('main','contrib','non-free') |
| 14 |
); |
); |
| 15 |
|
|
| 16 |
$mirrors=array( |
$mirrors=array( |
| 17 |
"unstable"=>"merkel.debian.org", |
'unstable' => 'ftp.nl.debian.org', |
| 18 |
"experimental"=>"merkel.debian.org", |
'experimental' => 'ftp.nl.debian.org' |
| 19 |
); |
); |
| 20 |
|
|
| 21 |
//list of addresses wishing to receive ALL the emails (even minor/less important reports) |
//list of addresses wishing to receive ALL the emails (even minor/less important reports) |
| 22 |
$email_all='atomo64@gmail.com'; |
$email_all = 'atomo64@gmail.com'; |
| 23 |
|
|
| 24 |
//list of addresses wishing to be notified when update_all runs |
//list of addresses wishing to be notified when update_all runs |
| 25 |
$email="bluefuture@email.it,filippo@esaurito.net,$email_all"; |
$email = "bluefuture@email.it,filippo@esaurito.net,$email_all"; |
| 26 |
$uscan=$base.'/uscan.pl'; |
|
| 27 |
$sfIgnore = array('dl','download','prdownload','downloads','lists','cvs','svn','www'); |
$uscan = $base . '/uscan.pl'; |
| 28 |
|
|
| 29 |
|
$sfIgnore = array('dl', 'download', 'prdownload', 'downloads', 'lists', 'cvs', 'svn', 'www'); |
| 30 |
$watchFileExts = array('tar.*', 'tgz', 'zip', 'gz', 'bz2'); |
$watchFileExts = array('tar.*', 'tgz', 'zip', 'gz', 'bz2'); |
| 31 |
$watchFileDversionMangle = array('cvs', 'svn', 'git', 'snapshot', 'pre', 'hg'); |
$watchFileDversionMangle = array('cvs', 'svn', 'git', 'snapshot', 'pre', 'hg'); |
| 32 |
/*1: watch url, 2: $space, 3: name, 4: file ext, 5: extra options*/ |
/*1: watch url, 2: $space, 3: name, 4: file ext, 5: extra options*/ |
| 33 |
$watchFormat = 'version=3' . "\n" . '%5$s' . "\n" . '%1$s%2$s%3$s-?_?([\d+\.]+|\d+)\.%4$s debian uupdate'; |
$watchFormat = 'version=3' . "\n" . '%5$s' . "\n" . '%1$s%2$s%3$s-?_?([\d+\.]+|\d+)\.%4$s debian uupdate'; |
| 34 |
|
|
| 35 |
$fetchUpstreamChanges = false; |
$fetchUpstreamChanges = false; |
| 36 |
|
|
| 37 |
$sendNotifications = true; |
$sendNotifications = true; |
| 38 |
$notificationsMailFrom = 'Debian External Health System <dehs-devel@lists.alioth.debian.org>'; |
$notificationsMailFrom = 'Debian External Health System <dehs-devel@lists.alioth.debian.org>'; |
| 39 |
|
|
| 40 |
|
$timeStamp_basedCheck = array('all'); |
| 41 |
|
$minimumAge = 5; |
| 42 |
|
|
| 43 |
$_SERVER['SERVER_NAME']=shell_exec("hostname -f 2>&1"); |
$_SERVER['SERVER_NAME']=shell_exec("hostname -f 2>&1"); |
| 44 |
?> |
?> |