-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.template
27 lines (21 loc) · 961 Bytes
/
.env.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# This file will be 'source'ed by the run_*.sh scripts in order to populate
# the EP container's environment with configuration data. Thus, values will
# undergo parameter expansion, making it possible to form absolute paths out
# of variables such as ${HOME}, ${PWD}, and ${THIS_DIR} (set by the scripts
# themselves).
#
## The central manager's hostname.
CENTRAL_MANAGER=cm.example.com
## The name for this execution point.
UNIQUE_NAME=example-user-file-transfer-ep
## The name of the transfer jobs' owner.
JOB_OWNER=example.user
## The absolute path to the IDTOKEN that the EP will use for authentication.
TOKEN_FILE=${THIS_DIR}/secrets/token
## The absolute path to the directory on the *host* that is being synchronized.
DATA_DIR=/data
## The absolute path to a directory on the *host* with enough free space to
## store the largest file being transferred plus 1G for log files and other
## ephemeral data.
LOCAL_DIR=/tmp/htcondor-file-transfer-ep