#!/bin/bash # This script sets the options interpreted by the server at runtime. # Enclose any settings that have whitespace with "quotation marks". ## DO NOT EDIT THESE OPTIONS LOGERR=0 LOGWARN=1 LOGNOTE=2 LOGINFO=3 LOGDEBUG=4 ## OPTIONS PASSED TO SERVER # Set the verbosity of log messages verbosity="$LOGDEBUG" # Set to 1/0 to enable/disable the pin module (gives direct control over GPIO/ADC/PWM) pin_test="0" # Set to the URI to use authentication #auth_uri="ldap://192.168.1.1" #auth_uri="ldaps://ldap.pheme.uwa.edu.au" #UWA #auth_uri="/etc/shadow" #auth_uri="shadow" # Set to the dn of the LDAP server ldap_base_dn="ou=People,dc=daedalus" # Testing #ldap_base_dn="ou=Users,ou=UWA,dc=uwads,dc=uwa,dc=edu,dc=au" #UWA ## OPTIONS TO BE PASSED TO SERVER; DO NOT EDIT parameters="-v $verbosity -p $pin_test" # -A $auth_uri -d $ldap_base_dn"