Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
33ca8b7f
Commit
33ca8b7f
authored
Jun 03, 2015
by
Seth Vargo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate to new AWS repo
parent
6fca917e
Changes
29
Show whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
40 additions
and
40 deletions
+40
-40
builder/amazon/chroot/builder.go
builder/amazon/chroot/builder.go
+1
-1
builder/amazon/chroot/step_attach_volume.go
builder/amazon/chroot/step_attach_volume.go
+1
-1
builder/amazon/chroot/step_check_root_device.go
builder/amazon/chroot/step_check_root_device.go
+1
-1
builder/amazon/chroot/step_create_volume.go
builder/amazon/chroot/step_create_volume.go
+1
-1
builder/amazon/chroot/step_instance_info.go
builder/amazon/chroot/step_instance_info.go
+1
-1
builder/amazon/chroot/step_mount_device.go
builder/amazon/chroot/step_mount_device.go
+1
-1
builder/amazon/chroot/step_register_ami.go
builder/amazon/chroot/step_register_ami.go
+2
-2
builder/amazon/chroot/step_register_ami_test.go
builder/amazon/chroot/step_register_ami_test.go
+2
-2
builder/amazon/chroot/step_snapshot.go
builder/amazon/chroot/step_snapshot.go
+1
-1
builder/amazon/common/access_config.go
builder/amazon/common/access_config.go
+2
-2
builder/amazon/common/artifact.go
builder/amazon/common/artifact.go
+2
-2
builder/amazon/common/block_device.go
builder/amazon/common/block_device.go
+2
-2
builder/amazon/common/block_device_test.go
builder/amazon/common/block_device_test.go
+2
-2
builder/amazon/common/ssh.go
builder/amazon/common/ssh.go
+1
-1
builder/amazon/common/state.go
builder/amazon/common/state.go
+2
-2
builder/amazon/common/step_ami_region_copy.go
builder/amazon/common/step_ami_region_copy.go
+1
-1
builder/amazon/common/step_create_tags.go
builder/amazon/common/step_create_tags.go
+2
-2
builder/amazon/common/step_key_pair.go
builder/amazon/common/step_key_pair.go
+1
-1
builder/amazon/common/step_modify_ami_attributes.go
builder/amazon/common/step_modify_ami_attributes.go
+2
-2
builder/amazon/common/step_run_source_instance.go
builder/amazon/common/step_run_source_instance.go
+2
-2
builder/amazon/common/step_security_group.go
builder/amazon/common/step_security_group.go
+2
-2
builder/amazon/common/step_source_ami_info.go
builder/amazon/common/step_source_ami_info.go
+1
-1
builder/amazon/ebs/builder.go
builder/amazon/ebs/builder.go
+1
-1
builder/amazon/ebs/step_create_ami.go
builder/amazon/ebs/step_create_ami.go
+1
-1
builder/amazon/ebs/step_modify_instance.go
builder/amazon/ebs/step_modify_instance.go
+1
-1
builder/amazon/ebs/step_stop_instance.go
builder/amazon/ebs/step_stop_instance.go
+1
-1
builder/amazon/instance/builder.go
builder/amazon/instance/builder.go
+1
-1
builder/amazon/instance/step_bundle_volume.go
builder/amazon/instance/step_bundle_volume.go
+1
-1
builder/amazon/instance/step_register_ami.go
builder/amazon/instance/step_register_ami.go
+1
-1
No files found.
builder/amazon/chroot/builder.go
View file @
33ca8b7f
...
...
@@ -9,7 +9,7 @@ import (
"log"
"runtime"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/common"
...
...
builder/amazon/chroot/step_attach_volume.go
View file @
33ca8b7f
...
...
@@ -6,7 +6,7 @@ import (
"strings"
"time"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_check_root_device.go
View file @
33ca8b7f
...
...
@@ -3,7 +3,7 @@ package chroot
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/chroot/step_create_volume.go
View file @
33ca8b7f
...
...
@@ -4,7 +4,7 @@ import (
"fmt"
"log"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_instance_info.go
View file @
33ca8b7f
...
...
@@ -4,7 +4,7 @@ import (
"fmt"
"log"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_mount_device.go
View file @
33ca8b7f
...
...
@@ -7,7 +7,7 @@ import (
"os"
"path/filepath"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/template/interpolate"
...
...
builder/amazon/chroot/step_register_ami.go
View file @
33ca8b7f
...
...
@@ -3,8 +3,8 @@ package chroot
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_register_ami_test.go
View file @
33ca8b7f
...
...
@@ -3,8 +3,8 @@ package chroot
import
(
"testing"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
)
func
testImage
()
ec2
.
Image
{
...
...
builder/amazon/chroot/step_snapshot.go
View file @
33ca8b7f
...
...
@@ -5,7 +5,7 @@ import (
"fmt"
"time"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/access_config.go
View file @
33ca8b7f
...
...
@@ -7,8 +7,8 @@ import (
"strings"
"unicode"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/mitchellh/packer/template/interpolate"
)
...
...
builder/amazon/common/artifact.go
View file @
33ca8b7f
...
...
@@ -6,8 +6,8 @@ import (
"sort"
"strings"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/block_device.go
View file @
33ca8b7f
package
common
import
(
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/packer/template/interpolate"
)
...
...
builder/amazon/common/block_device_test.go
View file @
33ca8b7f
...
...
@@ -4,8 +4,8 @@ import (
"reflect"
"testing"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
)
func
TestBlockDevice
(
t
*
testing
.
T
)
{
...
...
builder/amazon/common/ssh.go
View file @
33ca8b7f
...
...
@@ -5,7 +5,7 @@ import (
"fmt"
"time"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"golang.org/x/crypto/ssh"
)
...
...
builder/amazon/common/state.go
View file @
33ca8b7f
...
...
@@ -9,8 +9,8 @@ import (
"strconv"
"time"
"github.com/aws
labs
/aws-sdk-go/aws/awserr"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
)
...
...
builder/amazon/common/step_ami_region_copy.go
View file @
33ca8b7f
...
...
@@ -5,7 +5,7 @@ import (
"sync"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/step_create_tags.go
View file @
33ca8b7f
...
...
@@ -3,8 +3,8 @@ package common
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/step_key_pair.go
View file @
33ca8b7f
...
...
@@ -6,7 +6,7 @@ import (
"os"
"runtime"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/step_modify_ami_attributes.go
View file @
33ca8b7f
...
...
@@ -3,8 +3,8 @@ package common
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/step_run_source_instance.go
View file @
33ca8b7f
...
...
@@ -7,8 +7,8 @@ import (
"strconv"
"time"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/step_security_group.go
View file @
33ca8b7f
...
...
@@ -5,8 +5,8 @@ import (
"log"
"time"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/common/uuid"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/step_source_ami_info.go
View file @
33ca8b7f
...
...
@@ -3,7 +3,7 @@ package common
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/ebs/builder.go
View file @
33ca8b7f
...
...
@@ -9,7 +9,7 @@ import (
"fmt"
"log"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/common"
...
...
builder/amazon/ebs/step_create_ami.go
View file @
33ca8b7f
...
...
@@ -3,7 +3,7 @@ package ebs
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/ebs/step_modify_instance.go
View file @
33ca8b7f
...
...
@@ -3,7 +3,7 @@ package ebs
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/ebs/step_stop_instance.go
View file @
33ca8b7f
...
...
@@ -3,7 +3,7 @@ package ebs
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/instance/builder.go
View file @
33ca8b7f
...
...
@@ -9,7 +9,7 @@ import (
"os"
"strings"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/common"
...
...
builder/amazon/instance/step_bundle_volume.go
View file @
33ca8b7f
...
...
@@ -3,7 +3,7 @@ package instance
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/template/interpolate"
...
...
builder/amazon/instance/step_register_ami.go
View file @
33ca8b7f
...
...
@@ -3,7 +3,7 @@ package instance
import
(
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment