diff options
author | Case Duckworth | 2020-05-22 17:11:31 -0500 |
---|---|---|
committer | Case Duckworth | 2020-05-22 17:11:31 -0500 |
commit | f7d715206019ff429c28d672c70689e40c3cca25 (patch) | |
tree | 0a527be0477ee1d943564260be3b1cefa696fce6 | |
parent | Normalize line endings (diff) | |
download | bollux-f7d715206019ff429c28d672c70689e40c3cca25.tar.gz bollux-f7d715206019ff429c28d672c70689e40c3cca25.zip |
Reorder variables
-rwxr-xr-x | bollux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bollux b/bollux index e31d37e..0234282 100755 --- a/bollux +++ b/bollux | |||
@@ -8,10 +8,11 @@ set -euo pipefail | |||
8 | 8 | ||
9 | ### constants ### | 9 | ### constants ### |
10 | PRGN="${0##*/}" # program name | 10 | PRGN="${0##*/}" # program name |
11 | PROT="${BOLLUX_PROTO:-gemini}" # protocol | 11 | DLDR="${BOLLUX_DOWNDIR:-.}" # where to download |
12 | PORT="${BOLLUX_PORT:-1965}" # port number | ||
13 | LOGL="${BOLLUX_LOGLEVEL:-3}" # log level | 12 | LOGL="${BOLLUX_LOGLEVEL:-3}" # log level |
14 | MAXR="${BOLLUX_MAXREDIR:-5}" # max redirects | 13 | MAXR="${BOLLUX_MAXREDIR:-5}" # max redirects |
14 | PORT="${BOLLUX_PORT:-1965}" # port number | ||
15 | PROT="${BOLLUX_PROTO:-gemini}" # protocol | ||
15 | RDRS=0 # redirects | 16 | RDRS=0 # redirects |
16 | 17 | ||
17 | # LOGLEVELS: | 18 | # LOGLEVELS: |