summaryrefslogtreecommitdiffstats
path: root/conf.php
blob: 88f89abfdf7b892eebfd062e25011893c7a87fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
 * Mageia build-system quick status report script.
 *
 * @copyright Copyright (C) 2011 Mageia.Org
 *
 * @author Olivier Blin
 * @author Pascal Terjan
 * @author Romain d'Alverny
 * @author Michael Scherer
 *
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU GPL v2
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License aspublished by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 *
*/

/** Where is the current app located. */
$g_webapp_dir = '/var/www/bs';

/** Full system path where packages are uploaded. */
$upload_dir = '/var/lib/schedbot/uploads';

/** How long a history should we keep, in days. */
$max_modified = 4;

/** How many build machines are available for all arches. */
$g_nodes_count = 8;

/** html > body > h1 title */
$title = 'Build system status';

/** Should crawlers index this page or not? meta[robots] tag.*/
$robots = 'index,nofollow,nosnippet,noarchive';

/** */
$g_root_url = 'https://pkgsubmit.mageia.org/';

/** URL to view a package svn revision. %d is replaced by the revision  */
$package_commit_url = 'https://svnweb.mageia.org/packages?view=revision&revision=%d';

/** name of the theme */
$theme_name = 'mageia';

/** themes directory */
$themes_dir = $g_webapp_dir . '/themes/';

$mandatory_arches = array('i586', 'i686', 'x86_64', 'aarch64');