This is a builder for Joyent's Triton system. It was originally at jen20/packer-builder-triton, and subsequently at joyent/packer-builder-triton on GitHub. The following commit vendors the dependencies.
14 lines
243 B
Go
14 lines
243 B
Go
package triton
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func testConfig(t *testing.T) Config {
|
|
return Config{
|
|
AccessConfig: testAccessConfig(t),
|
|
SourceMachineConfig: testSourceMachineConfig(t),
|
|
TargetImageConfig: testTargetImageConfig(t),
|
|
}
|
|
}
|