-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsettings.dat
More file actions
23 lines (22 loc) · 746 Bytes
/
settings.dat
File metadata and controls
23 lines (22 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
# Set different options for specific environment to overwrite defaults
'environments': [
{
'name': 'Server1',
'host': '127.0.0.1', # some IP or domain here
'username': 'user1' # username on the server no. 1
},
{
'name': 'Server2',
'host': 'example.com', # some IP or domain here
'username': 'user2' # username on the server no. 2
}
],
# Default settings used when no environment-specific setting has been found
'defaults': {
'name': 'some server',
'indent': ' ', # indent from remote messages
'private_key': '/home/user/.ssh/id_rsa', # location of private key
'command': 'ls'
}
}