diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2011-03-29 13:58:28 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2011-03-29 13:58:28 -0700 |
commit | e181ba1783151724bed517b55823afa3dba7ec5a (patch) | |
tree | fde0664d2e2f9163395954f04a2c105c4c694b6b | |
parent | eb69caa6936f1135ce36396a85917d7abb83cff6 (diff) | |
download | cash-e181ba1783151724bed517b55823afa3dba7ec5a.tar.gz cash-e181ba1783151724bed517b55823afa3dba7ec5a.zip |
Documenting basic configuration variables
-rw-r--r-- | configure.sh | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/configure.sh b/configure.sh index e441aa0..6ff5ec5 100644 --- a/configure.sh +++ b/configure.sh @@ -1,18 +1,18 @@ #!/bin/echo This is intended to be run from within scripts as this as . -export CA="omgca" -export EXPIRE="3650" -export C="US" -export ST="Oregon" -export L="Portland" -export O="Rayhawk Foundation For World Domination" -export OU="Ministry of Propaganda" -export CN="Joe Rayhawk" -export E="jrayhawk+ssl@omgwallhack.org" # also used for From: and CC: in ./mailcert.sh usage +export CA="omgca" # The short Certificate Authority name +export EXPIRE="3650" # Number of days until expiration for all certificates +export C="US" # Two-letter country code +export ST="Oregon" # State or province +export L="Portland" # Locality +export O="Rayhawk Foundation For World Domination" # Organization +export OU="Ministry of Propaganda" # Organizational Unit +export CN="Joe Rayhawk" # Common Name +export E="jrayhawk+ssl@omgwallhack.org" # Email; used in certs and for From: and CC: in ./mailcert.sh usage -export OPENSSL_CONFIG="openssl.cnf" +export OPENSSL_CONFIG="openssl.cnf" # For advanced customization (not suggested) -export EMAIL_DEFAULT_DOMAIN="omgwallhack.org" +export EMAIL_DEFAULT_DOMAIN="omgwallhack.org" # Where to ./mailcert.sh infers users as being at as a last resort if [ $SUPPLEMENTARY_CONFIG ]; then if [ -e ./"$SUPPLEMENTARY_CONFIG" ]; then |