Automatic commit of irc logs
[matches/MCTX3420.git] / server / parameters
index 9f33848..e0c8f47 100644 (file)
@@ -17,15 +17,26 @@ LOGDEBUG=4
 verbosity="$LOGDEBUG"
 
 # Set to 1/0 to enable/disable the pin module (gives direct control over GPIO/ADC/PWM)
+#TODO: This option isn't actually implemented yet...
 pin_test="0"
 
 # Set to the URI to use authentication
-auth_uri="ldap://192.168.1.1"
-#auth_uri="/etc/shadow"
+# (Uncomment one of these to enable authentication)
+
+#LDAP auth
+#auth_uri="ldap://192.168.1.1#ou=People,dc=daedalus"
+#auth_uri="ldaps://ldap.pheme.uwa.edu.au#ou=Users,ou=UWA,dc=uwads,dc=uwa,dc=edu,dc=au" #UWA
 
-# Set to the dn of the LDAP server
-ldap_base_dn="ou=People,dc=daedalus"
+#Shadow auth (choose the file location)
+#auth_uri="/etc/shadow"
+#auth_uri="shadow"
 
+#UserCake
+#auth_uri="mysql://localhost#usercake,$(cat mysql_password)"
 
 ## OPTIONS TO BE PASSED TO SERVER; DO NOT EDIT
-parameters="-v $verbosity -p $pin_test -A $auth_uri -d $ldap_base_dn"
+if [ -n "$auth_uri" ]; then
+       parameters="-v $verbosity -p $pin_test -A $auth_uri"
+else
+       parameters="-v $verbosity -p $pin_test"
+fi;

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