edited dilatometer
[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 pin_test="0"
21
22 # Set to the URI to use authentication
23 #auth_uri="ldap://192.168.1.1"
24 #auth_uri="ldaps://ldap.pheme.uwa.edu.au" #UWA
25 #auth_uri="/etc/shadow"
26 #auth_uri="shadow"
27
28 # Set to the dn of the LDAP server
29 ldap_base_dn="ou=People,dc=daedalus" # Testing
30 #ldap_base_dn="ou=Users,ou=UWA,dc=uwads,dc=uwa,dc=edu,dc=au" #UWA
31
32
33 ## OPTIONS TO BE PASSED TO SERVER; DO NOT EDIT
34 parameters="-v $verbosity -p $pin_test"
35 # -A $auth_uri -d $ldap_base_dn"

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