-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.cfg
More file actions
57 lines (41 loc) · 1.68 KB
/
config.cfg
File metadata and controls
57 lines (41 loc) · 1.68 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
###--- logging config --- ###
VADERSHELL_LOG_ENABLED=1 #1 = enable logging, 0 = no logging at all
# Mode: none | tee | ts-file | ts-both
# - tee: console raw, logfile raw (best for interactive prompts)
# - ts-file: console raw, logfile timestamped (recommended)
# - ts-both: console + logfile timestamped (prompts may appear late)
VADERSHELL_LOG_MODE=tee
# Where to store logs (can be absolute or use $HOME)
VADERSHELL_LOG_DIR="$HOME/.vadershell/logs"
# Optional fixed logfile path; leave empty to auto-name per run
VADERSHELL_LOG_FILE=""
# Shell trace (xtrace). 1 = enable, 0 = disable
VADERSHELL_TRACE=0
### --- end logging config --- ###
# List of servers in the format <hostname>:<user>@<hostname>
SERVERS=(
"server1:user1@server1"
"server2:user2@server2"
)
# Datacenter Gateway IP for compute nodes
DATACENTER_GW_IP=10.107.30.1
# Base IP of the datacenter compute nodes (e.g., sequential IPs 10.107.30.100+)
DATACENTER_BASE_IP=10.107.30.100
# SSH key for authentication
DATACENTER_GW_SSH_KEY_PATH="/path/to/your/private_key"
# The Mothership (Admin Server) – Master control node
ADMIN_SERVER="<hostname>:<user>@<user>"
# Username for the mother ship server
MOTHERSHIP_USER="skywalker"
# IP address of the mother ship
MOTHERSHIP_IP="10.218.XXX.XXX"
# Destination directory on the mother ship
MOTHERSHIP_DESTINATION="/path/to/death/star/"
# Username for accessing the data center nodes
DATACENTER_USER="skywalker"
# A compute node in the data center
DUMMY_COMPUTE_NODE="10.XX.XX.XXX"
# Destination directory within the data center
DATACENTER_DESTINATION="/home/<users>/${DATACENTER_USER}/<folder>/"
# Local destination directory for files
LOCAL_DESTINATION="/path/to/local/death/star/"