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
49a13195
Commit
49a13195
authored
Nov 26, 2013
by
Nathan Sullivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverting testing stuff
parent
0cfb7564
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
31 additions
and
31 deletions
+31
-31
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_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
+2
-2
builder/amazon/chroot/step_register_ami.go
builder/amazon/chroot/step_register_ami.go
+1
-1
builder/amazon/chroot/step_snapshot.go
builder/amazon/chroot/step_snapshot.go
+1
-1
builder/amazon/chroot/step_source_ami_info.go
builder/amazon/chroot/step_source_ami_info.go
+1
-1
builder/amazon/common/access_config.go
builder/amazon/common/access_config.go
+1
-1
builder/amazon/common/ami_config.go
builder/amazon/common/ami_config.go
+1
-1
builder/amazon/common/artifact.go
builder/amazon/common/artifact.go
+2
-2
builder/amazon/common/block_device.go
builder/amazon/common/block_device.go
+1
-1
builder/amazon/common/block_device_test.go
builder/amazon/common/block_device_test.go
+1
-1
builder/amazon/common/ssh.go
builder/amazon/common/ssh.go
+1
-1
builder/amazon/common/state.go
builder/amazon/common/state.go
+1
-1
builder/amazon/common/step_ami_region_copy.go
builder/amazon/common/step_ami_region_copy.go
+2
-2
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
+1
-1
builder/amazon/common/step_security_group.go
builder/amazon/common/step_security_group.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_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 @
49a13195
...
...
@@ -7,7 +7,7 @@ package chroot
import
(
"errors"
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/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 @
49a13195
...
...
@@ -3,7 +3,7 @@ package chroot
import
(
"errors"
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_create_volume.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package chroot
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/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 @
49a13195
...
...
@@ -2,8 +2,8 @@ package chroot
import
(
"fmt"
"github.com/
CpuID
/goamz/aws"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/aws"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"log"
...
...
builder/amazon/chroot/step_register_ami.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package chroot
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_snapshot.go
View file @
49a13195
...
...
@@ -3,7 +3,7 @@ package chroot
import
(
"errors"
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_source_ami_info.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package chroot
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/access_config.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/aws"
"github.com/
mitchellh
/goamz/aws"
"github.com/mitchellh/packer/packer"
"strings"
"unicode"
...
...
builder/amazon/common/ami_config.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/aws"
"github.com/
mitchellh
/goamz/aws"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/artifact.go
View file @
49a13195
...
...
@@ -2,8 +2,8 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/aws"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/aws"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/packer/packer"
"log"
"strings"
...
...
builder/amazon/common/block_device.go
View file @
49a13195
package
common
import
(
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
)
// BlockDevice
...
...
builder/amazon/common/block_device_test.go
View file @
49a13195
package
common
import
(
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"reflect"
"testing"
)
...
...
builder/amazon/common/ssh.go
View file @
49a13195
...
...
@@ -4,7 +4,7 @@ import (
gossh
"code.google.com/p/go.crypto/ssh"
"errors"
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/communicator/ssh"
"time"
...
...
builder/amazon/common/state.go
View file @
49a13195
...
...
@@ -3,7 +3,7 @@ package common
import
(
"errors"
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"log"
"time"
...
...
builder/amazon/common/step_ami_region_copy.go
View file @
49a13195
...
...
@@ -2,8 +2,8 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/aws"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/aws"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/step_create_tags.go
View file @
49a13195
...
...
@@ -2,8 +2,8 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/aws"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/aws"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/step_key_pair.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"os"
...
...
builder/amazon/common/step_modify_ami_attributes.go
View file @
49a13195
...
...
@@ -2,8 +2,8 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/aws"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/aws"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/common/step_run_source_instance.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"io/ioutil"
...
...
builder/amazon/common/step_security_group.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package common
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/common/uuid"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/ebs/builder.go
View file @
49a13195
...
...
@@ -7,7 +7,7 @@ package ebs
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/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 @
49a13195
...
...
@@ -2,7 +2,7 @@ package ebs
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/ebs/step_stop_instance.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package ebs
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/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 @
49a13195
...
...
@@ -5,7 +5,7 @@ package instance
import
(
"errors"
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/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 @
49a13195
...
...
@@ -2,7 +2,7 @@ package instance
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
...
...
builder/amazon/instance/step_register_ami.go
View file @
49a13195
...
...
@@ -2,7 +2,7 @@ package instance
import
(
"fmt"
"github.com/
CpuID
/goamz/ec2"
"github.com/
mitchellh
/goamz/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