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