diff --git a/ovpn-ad-sync.sh b/ovpn-ad-sync.sh index 28698b6..6fcdf81 100755 --- a/ovpn-ad-sync.sh +++ b/ovpn-ad-sync.sh @@ -23,19 +23,19 @@ # THINGS WILL HAPPEN!!! OAS_ADUSR="oas_user@EXAMPLE.COM" # user@domain.tld or full DN OAS_ADPWD="oas_user" # we will change this later -OAS_ADBASE="dc=supplies,dc=local" # search base +OAS_ADBASE="dc=example,dc=com" # search base OAS_ADURI="ldap://192.168.1.21" # full URI required -OAS_VPNGRP="cn=OpenVPNUsers,cn=Users,dc=supplies,dc=local" # full group DN +OAS_VPNGRP="cn=OpenVPNUsers,cn=Users,dc=example,dc=com" # full group DN OAS_USERDIR="/etc/openvpn/oas_clients" # full path to user configs OAS_RSADIR="/etc/openvpn/rsa" # full path to easy-rsa root OAS_LOGFILE="/var/log/oas.log" # log file OAS_LOGRET=10 # lines of old log to keep OAS_OVPNTPL="${OAS_USERDIR}/template.ovpn" # template file to use for clients -OAS_MAILSUBJ="Supplies Unlimited VPN Information" # subject line of email -OAS_MAILFROM="admin@suppliesunlimited.com" # email from appearance -OAS_MAILADMIN="admin@point808.com" # email to send errors and config cc +OAS_MAILSUBJ="Example Company - VPN Information" # subject line of email +OAS_MAILFROM="admin@example.com" # email from appearance +OAS_MAILADMIN="admin@example.com" # email to send errors and config cc OAS_USERGUIDE="${OAS_USERDIR}/VPN_SETUP_GUIDE.pdf" # pdf or other common file guide for users -OAS_ORGNAME="Supplies Unlimited, Inc." +OAS_ORGNAME="Example Company, Inc." # END OF VARIABLES # READ, BUT DON'T TOUCH THE FOLLOWING UNLESS YOU KNOW WHAT YOU ARE DOING