github.com/hashicorp/packer@v1.14.3/tty_solaris.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: BUSL-1.1
     3  
     4  package main
     5  
     6  import (
     7  	"fmt"
     8  
     9  	packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
    10  )
    11  
    12  func openTTY() (packersdk.TTY, error) {
    13  	return nil, fmt.Errorf("no TTY available on solaris")
    14  }