fixed default variables in main script

This commit is contained in:
Josh North 2014-12-03 14:40:25 -05:00
parent c673ae5f92
commit 14bad98fbb

View File

@ -23,19 +23,19 @@
# THINGS WILL HAPPEN!!! # THINGS WILL HAPPEN!!!
OAS_ADUSR="oas_user@EXAMPLE.COM" # user@domain.tld or full DN OAS_ADUSR="oas_user@EXAMPLE.COM" # user@domain.tld or full DN
OAS_ADPWD="oas_user" # we will change this later 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_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_USERDIR="/etc/openvpn/oas_clients" # full path to user configs
OAS_RSADIR="/etc/openvpn/rsa" # full path to easy-rsa root OAS_RSADIR="/etc/openvpn/rsa" # full path to easy-rsa root
OAS_LOGFILE="/var/log/oas.log" # log file OAS_LOGFILE="/var/log/oas.log" # log file
OAS_LOGRET=10 # lines of old log to keep OAS_LOGRET=10 # lines of old log to keep
OAS_OVPNTPL="${OAS_USERDIR}/template.ovpn" # template file to use for clients OAS_OVPNTPL="${OAS_USERDIR}/template.ovpn" # template file to use for clients
OAS_MAILSUBJ="Supplies Unlimited VPN Information" # subject line of email OAS_MAILSUBJ="Example Company - VPN Information" # subject line of email
OAS_MAILFROM="admin@suppliesunlimited.com" # email from appearance OAS_MAILFROM="admin@example.com" # email from appearance
OAS_MAILADMIN="admin@point808.com" # email to send errors and config cc 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_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 # END OF VARIABLES
# READ, BUT DON'T TOUCH THE FOLLOWING UNLESS YOU KNOW WHAT YOU ARE DOING # READ, BUT DON'T TOUCH THE FOLLOWING UNLESS YOU KNOW WHAT YOU ARE DOING