added diabled crypto

This commit is contained in:
2023-03-10 18:18:05 +00:00
parent a82da6dd4b
commit 97e85d5b7a

View File

@@ -31,7 +31,7 @@ func (b *Barrier) CreateBarrierSession() error {
return err
}
cmd := exec.Command("sudo", "-u", configResp.SystemUsername, "barrierc", "-f", "--debug", "DEBUG", "--log", "/tmp/barrier.log", b.IPAddress)
cmd := exec.Command("sudo", "-u", configResp.SystemUsername, "barrierc", "-f", "--disable-crypto", "--debug", "DEBUG", "--log", "/tmp/barrier.log", b.IPAddress)
// USE THE FOLLOWING TO DEBUG
//cmdReader, err := cmd.StdoutPipe()