1
0
mirror of https://github.com/hashicorp/packer.git synced 2026-02-05 12:45:10 +01:00
Files
packer/tty_solaris.go
2025-12-11 07:02:12 +00:00

15 lines
262 B
Go

// Copyright IBM Corp. 2013, 2025
// SPDX-License-Identifier: BUSL-1.1
package main
import (
"fmt"
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
)
func openTTY() (packersdk.TTY, error) {
return nil, fmt.Errorf("no TTY available on solaris")
}