forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added proper comments to
teleport
package
So we're playing nicer with godoc
- Loading branch information
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
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,26 @@ | ||
/* | ||
Gravitational Teleport is a modern SSH server for remotely accessing clusters | ||
of Linux servers via SSH or HTTPS. It is intended to be used instead of sshd. | ||
Teleport enables teams to easily adopt the best SSH practices like: | ||
- No need to distribute keys: Teleport uses certificate-based access with | ||
automatic expiration time. | ||
- Enforcement of 2nd factor authentication. | ||
- Cluster introspection: every Teleport node becomes a part of a cluster | ||
and is visible on the Web UI. | ||
- Record and replay SSH sessions for knowledge sharing and auditing purposes. | ||
- Collaboratively troubleshoot issues through session sharing. | ||
- Connect to clusters located behind firewalls without direct Internet | ||
access via SSH bastions. | ||
- Ability to integrate SSH credentials with your organization identities | ||
via OAuth (Google Apps, Github). | ||
- Keep the full audit log of all SSH sessions within a cluster. | ||
Teleport web site: | ||
https://gravitational.com/teleport/ | ||
Teleport on Github: | ||
https://github.com/gravitational/teleport | ||
*/ | ||
package teleport |
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,8 +1,11 @@ | ||
/* DO NOT EDIT THIS FILE. IT IS GENERATED BY 'make setver'*/ | ||
|
||
package teleport | ||
|
||
const ( | ||
Version = "1.3.2-beta" | ||
) | ||
|
||
// Gitref variable is automatically set to the output of git-describe | ||
// during the build process | ||
var Gitref string |
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