/etc/ltsp/ltsp-cluster-control.config.php is in ltsp-cluster-control 2.0.3-0ubuntu3.
This file is owned by www-data:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?php
$CONFIG['save'] = "Save";
$CONFIG['lang'] = "en"; #Language for the interface (en and fr are supported"
$CONFIG['charset'] = "UTF-8";
$CONFIG['use_https'] = "false"; #Force https
$CONFIG['terminal_auth'] = "false";
$CONFIG['db_server'] = "localhost"; #Hostname of the database server
$CONFIG['db_user'] = "ltsp"; #Username to access the database
$CONFIG['db_password'] = "ltspcluster"; #Password to access the database
$CONFIG['db_name'] = "ltsp"; #Database name
$CONFIG['db_type'] = "postgres"; #Database type (only postgres is supported)
$CONFIG['auth_name'] = "EmptyAuth";
$CONFIG['loadbalancer'] = "ltsp-loadbalancer01.yourdomain.com"; #Hostname of the loadbalancer
$CONFIG['first_setup_lock'] = "TRUE";
$CONFIG['printer_servers'] = array("cups.yourdomain.com"); #Hostname(s) of your print servers
$CONFIG['rootInstall'] = "/usr/share/ltsp-cluster-control/Admin/";
?>
|