aboutsummaryrefslogtreecommitdiff
blob: 760c1e23e80bf8562ec7c8c1890fd40ddfbabe8e (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
<?php

    // Gentoaster build daemon settings
    // Licensed under GPL v3, see COPYING file
    
    // Set the path that completed images should be stored at
    define("CONFIGURATIONS_PATH", "/var/www/gentoaster/images");
    
    // Set the path to the folder the Gentoaster tool is at
    define("GENTOASTER_PATH", "/usr/share/gentoaster");
    
    // Set the name of the image creation tool
    define("BUILD_TOOL_NAME", "create_image.sh");
    
    // Set the name of the testdrive wrapper
    define("WRAP_TOOL_NAME", "wrap.sh");
    
    // Set the externally accessible IP/host of this machine
    define("EXTERNAL_HOST", "192.168.2.169");
    
    // Set the port range that should be used for testdrives
    define("LOW_PORT", 5900);
    define("HIGH_PORT", 5999);
    
    // Set the MySQL access details that should be used
    define("MYSQL_HOSTNAME", "localhost");
    define("MYSQL_USERNAME", "gentoaster");
    define("MYSQL_PASSWORD", "");
    define("MYSQL_DATABASE", "gentoaster");