Update Titlepage with links to individual sections
[matches/MCTX3420.git] / server / parameters
1 #!/bin/bash
2
3 # This script sets the options interpreted by the server at runtime.
4 # Enclose any settings that have whitespace with "quotation marks".
5
6
7 ## DO NOT EDIT THESE OPTIONS
8 LOGERR=0
9 LOGWARN=1
10 LOGNOTE=2
11 LOGINFO=3
12 LOGDEBUG=4
13
14 ## OPTIONS PASSED TO SERVER
15
16 # Set the verbosity of log messages
17 verbosity="$LOGDEBUG"
18
19 # Set to 1/0 to enable/disable the pin module (gives direct control over GPIO/ADC/PWM)
20 #TODO: This option isn't actually implemented yet...
21 pin_test="0"
22
23 # Set to the URI to use authentication
24 #auth_uri="ldap://192.168.1.1#ou=People,dc=daedalus"
25 #auth_uri="ldaps://ldap.pheme.uwa.edu.au#ou=Users,ou=UWA,dc=uwads,dc=uwa,dc=edu,dc=au" #UWA
26 #auth_uri="/etc/shadow"
27 #auth_uri="shadow"
28 #auth_uri="mysql://localhost#root,$(cat mysql_password)"
29
30
31 ## OPTIONS TO BE PASSED TO SERVER; DO NOT EDIT
32 parameters="-v $verbosity -p $pin_test"
33 # -A $auth_uri"

UCC git Repository :: git.ucc.asn.au