7237eb67ed
There was an RSA private key used for testing included in the old version. This commit updates it to a version that does not include the key so that the key is not detected by tools which scan the Consul binary for private keys. Commands run: go get github.com/joyent/triton-go@6801d15b779f042cfd821c8a41ef80fc33af9d47 make update-vendor
35 lines
572 B
Go
35 lines
572 B
Go
// +build !appengine,!js,windows
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"syscall"
|
|
|
|
sequences "github.com/konsorten/go-windows-terminal-sequences"
|
|
)
|
|
|
|
func initTerminal(w io.Writer) {
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
sequences.EnableVirtualTerminalProcessing(syscall.Handle(v.Fd()), true)
|
|
}
|
|
}
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
var ret bool
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
var mode uint32
|
|
err := syscall.GetConsoleMode(syscall.Handle(v.Fd()), &mode)
|
|
ret = (err == nil)
|
|
default:
|
|
ret = false
|
|
}
|
|
if ret {
|
|
initTerminal(w)
|
|
}
|
|
return ret
|
|
}
|