2019-05-07 09:58:49 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2020-11-20 13:53:16 -05:00
|
|
|
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
|
2019-05-07 09:58:49 -04:00
|
|
|
)
|
|
|
|
|
2020-11-20 13:53:16 -05:00
|
|
|
func openTTY() (packersdk.TTY, error) {
|
2019-05-07 09:58:49 -04:00
|
|
|
return nil, fmt.Errorf("no TTY available on solaris")
|
|
|
|
}
|