Temporarily disable local check in client UI setup

This commit is contained in:
Chris Roberts 2021-08-05 11:28:54 -07:00 committed by Paul Hinze
parent 219cfe81c5
commit b86e9c3e8b
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -28,9 +28,10 @@ func (c *UICommand) Run(args []string) int {
return 1
}
if c.basis.Local() {
c.basis.UI().Output("Vagrant must be configured in server mode to access the UI", terminal.WithWarningStyle())
}
// TODO(spox): comment this out until local configuration is updated
// if c.client.Local() {
// c.client.UI().Output("Vagrant must be configured in server mode to access the UI", terminal.WithWarningStyle())
// }
// Get our API client
client := c.basis.Client()