-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add /etc/ssh_config test config file
- Loading branch information
Showing
4 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
Sample `.shuttle.json` and `.ssh/config` file for testing functionality of application. | ||
|
||
1. Copy `shuttle.json` to `~/.shuttle.json` | ||
2. Copy `ssh_config` to `~/.ssh/config` | ||
Sample config files for testing various functionalities of the application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# | ||
# A couple of Github accounts | ||
# Prefixed with `.` so they are ignored from the Shuttle menu | ||
# | ||
Host .github.com-user1.global | ||
User user1 | ||
Hostname github.com | ||
IdentityFile ~/.ssh/github-1.key | ||
|
||
Host .github.com-user2.global | ||
User user2 | ||
Hostname github.com | ||
IdentityFile ~/.ssh/github-2.key | ||
|
||
# | ||
# Main menu items | ||
# | ||
Host global-blog.example.com | ||
User username | ||
Hostname blog.example.com | ||
|
||
# | ||
# Grouped menu items | ||
# | ||
Host Global-Group1/web01.example.com | ||
User username | ||
Hostname web01.example.com | ||
|
||
Host Global-Group1/web02.example.com | ||
User username | ||
Hostname web02.example.com | ||
|
||
Host Global-Group1/web03.example.com | ||
User username | ||
Hostname web03.example.com | ||
|
||
Host Global-Group2/mysql01.example.com | ||
User username | ||
Hostname mysql01.example.com | ||
|
||
Host Global-Group2/mysql02.example.com | ||
User username | ||
Hostname mysql02.example.com |