-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapplication.conf
30 lines (29 loc) · 989 Bytes
/
application.conf
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
################################################################################
# Bundle-specific Peel configuration
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Customize Peel configuration values appearing in
#
# https://github.com/stratosphere/peel/blob/master/peel-core/src/main/resources/reference.peel.conf
#
# here.
#
app {
# custom bundle paths
path {
# shared downloads path
downloads = ${user.home}"/Downloads/systems"
# shared systems path
systems = ${user.home}"/etc"
}
# rsync remotes
rsync {
# 'ACME' remote
acme {
url = "acme-master.acme.org" # remote host url
rsh = "ssh -l acme-user" # remote shell to use
dst = "/home/acme-user/experiments" # remote destination base folder
own = "peel:peel" # remote files owner (optional)
}
}
}