-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini.example
44 lines (40 loc) · 1.66 KB
/
config.ini.example
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# globus client_id is required
[globus]
clientid = my-client-id
# optionally, set a time limit (in minutes), default is 24 hours
[schedule]
timelimitmins = 300
# comma separated list of emails to send all output to (optional)
[notification]
email = email1@example.com,email2@example.com
# one or more sections (with arbitrary section names) for each directory to be synchronised
[nameofthissync]
# the Globus source endpoint id
src_endpoint = src-endpoint-id
# the Globus destination endpoint id
dst_endpoint = dst-endpoint-id
# the path to the directory on the source endpoint
src_path = dirtoshare
# the path to the directory on the destination endpoint (optional, defaults to src_path)
#dst_path = dirtoshare
# email notification when files have been transferred (optional)
email = email3@example.com
# delete source files if transfer successfully completed (optional, defaults to false)
delete = true
# sync level, valid values are "exists", "size", "mtime" and "checksum" (optional, defaults to mtime)
sync_level = mtime
[nameofanothersync]
# the Globus source endpoint id
src_endpoint = src-endpoint-id-2
# the Globus destination endpoint id
dst_endpoint = dst-endpoint-id-2
# the path to the directory on the source endpoint
src_path = /
# the path to the directory on the destination endpoint (optional, defaults to src_path)
dst_path = /path/to/dir
# email notification when files have been transferred (optional)
email = email4@example.com,email5@example.com
# delete source files if transfer successfully completed (optional, defaults to false)
#delete = false
# sync level, valid values are "exists", "size", "mtime" and "checksum" (optional, defaults to mtime)
#sync_level = mtime