blob: a2d71ada5bd9142f6b15994c584257a8187bea75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# vi: ft=sh
# Add with HOSTS+=(...)
# Format: "host[:port]"
# port should be ommited if default (22) since hosts array is
# checked for duplicates
# Including other targets is done with 'source'.
# env: $TARGET_DIR
HOSTS+=(
"localhost"
"test"
)
|