Implement a small program that reads /proc/net/tcp every 10 seconds and outputs any new connections.
Go to file
Mike Holloway 0cd721909b On branch master
Changes to be committed:
	modified:   Questions_Answers.md
2021-06-28 21:08:17 -04:00
timer
.gitignore
main.go Whoops, > -> < 2021-06-28 00:15:21 -04:00
Questions_Answers.md On branch master 2021-06-28 21:08:17 -04:00
README On branch master 2021-06-28 20:59:23 -04:00

# teleport_devops_challenge

WARNING: This program is in an incomplete state and does not build successfully.
	The latest commit that builds successfully can be found here: 
	https://git.libre.audio/seasharp/teleport_devops_challenge/commit/93fd6f916bc5a6b7504c5475f7cbcebabaae5277
	

## Dependencies

 - golang 'encoding' package

## Building

Ensure your $GOPATH is set correctly and run:

1. Execute `go build main.go` in repository root
2. Execute `go install teleport_devops_challenge`

## Executing

Ensure GOPATH/bin (GOPATH = `go env GOPATH`) has been added to your shell $PATH
	or execute the following:

 `PATH=/home/$(whoami)/go/bin:$PATH teleport_devops_challenge`