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
1b07d7eb
Commit
1b07d7eb
authored
Feb 25, 2015
by
Seth Vargo
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1769 from ceh/vet-fixes
Address go vet reports
parents
8c36684e
ffd570fe
Changes
20
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
54 additions
and
42 deletions
+54
-42
Makefile
Makefile
+14
-1
builder/amazon/common/step_ami_region_copy.go
builder/amazon/common/step_ami_region_copy.go
+2
-2
builder/amazon/ebs/step_create_ami.go
builder/amazon/ebs/step_create_ami.go
+1
-1
builder/digitalocean/builder_test.go
builder/digitalocean/builder_test.go
+5
-5
builder/googlecompute/step_create_instance_test.go
builder/googlecompute/step_create_instance_test.go
+1
-1
builder/googlecompute/step_teardown_instance_test.go
builder/googlecompute/step_teardown_instance_test.go
+2
-2
builder/openstack/artifact.go
builder/openstack/artifact.go
+1
-1
builder/openstack/step_wait_for_rackconnect.go
builder/openstack/step_wait_for_rackconnect.go
+0
-1
builder/parallels/iso/builder_test.go
builder/parallels/iso/builder_test.go
+1
-1
builder/qemu/builder_test.go
builder/qemu/builder_test.go
+1
-1
builder/virtualbox/iso/builder_test.go
builder/virtualbox/iso/builder_test.go
+1
-1
builder/vmware/common/step_shutdown_test.go
builder/vmware/common/step_shutdown_test.go
+1
-1
builder/vmware/iso/builder_test.go
builder/vmware/iso/builder_test.go
+1
-1
common/step_create_floppy_test.go
common/step_create_floppy_test.go
+4
-4
communicator/ssh/communicator_test.go
communicator/ssh/communicator_test.go
+3
-3
packer/template_test.go
packer/template_test.go
+2
-2
post-processor/vagrant-cloud/client.go
post-processor/vagrant-cloud/client.go
+5
-5
post-processor/vagrant/post-processor_test.go
post-processor/vagrant/post-processor_test.go
+1
-1
provisioner/puppet-masterless/provisioner.go
provisioner/puppet-masterless/provisioner.go
+1
-1
provisioner/salt-masterless/provisioner.go
provisioner/salt-masterless/provisioner.go
+7
-7
No files found.
Makefile
View file @
1b07d7eb
TEST
?=
./...
TEST
?=
./...
VETARGS
?=
-asmdecl
-atomic
-bool
-buildtags
-copylocks
-methods
\
-nilfunc
-printf
-rangeloops
-shift
-structtags
-unsafeptr
default
:
test
default
:
test
...
@@ -10,6 +12,7 @@ dev:
...
@@ -10,6 +12,7 @@ dev:
test
:
test
:
go
test
$(TEST)
$(TESTARGS)
-timeout
=
10s
go
test
$(TEST)
$(TESTARGS)
-timeout
=
10s
@
$(MAKE)
vet
testrace
:
testrace
:
go
test
-race
$(TEST)
$(TESTARGS)
go
test
-race
$(TEST)
$(TESTARGS)
...
@@ -17,4 +20,14 @@ testrace:
...
@@ -17,4 +20,14 @@ testrace:
updatedeps
:
updatedeps
:
go get
-d
-v
-p
2 ./...
go get
-d
-v
-p
2 ./...
.PHONY
:
bin default test updatedeps
vet
:
@
go tool vet 2>/dev/null
;
if
[
$$
?
-eq
3
]
;
then
\
go get golang.org/x/tools/cmd/vet
;
\
fi
@
go tool vet
$(VETARGS)
.
;
if
[
$$
?
-eq
1
]
;
then
\
echo
""
;
\
echo
"Vet found suspicious constructs. Please check the reported constructs"
;
\
echo
"and fix them if necessary before submitting the code for reviewal."
;
\
fi
.PHONY
:
bin default test updatedeps vet
builder/amazon/common/step_ami_region_copy.go
View file @
1b07d7eb
...
@@ -79,7 +79,7 @@ func amiRegionCopy(state multistep.StateBag, auth aws.Auth, imageId string,
...
@@ -79,7 +79,7 @@ func amiRegionCopy(state multistep.StateBag, auth aws.Auth, imageId string,
if
err
!=
nil
{
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error Copying AMI (%s) to region (%s): %s"
,
return
""
,
fmt
.
Errorf
(
"Error Copying AMI (%s) to region (%s): %s"
,
imageId
,
target
,
err
)
imageId
,
target
.
Name
,
err
)
}
}
stateChange
:=
StateChangeConf
{
stateChange
:=
StateChangeConf
{
...
@@ -91,7 +91,7 @@ func amiRegionCopy(state multistep.StateBag, auth aws.Auth, imageId string,
...
@@ -91,7 +91,7 @@ func amiRegionCopy(state multistep.StateBag, auth aws.Auth, imageId string,
if
_
,
err
:=
WaitForState
(
&
stateChange
);
err
!=
nil
{
if
_
,
err
:=
WaitForState
(
&
stateChange
);
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error waiting for AMI (%s) in region (%s): %s"
,
return
""
,
fmt
.
Errorf
(
"Error waiting for AMI (%s) in region (%s): %s"
,
resp
.
ImageId
,
target
,
err
)
resp
.
ImageId
,
target
.
Name
,
err
)
}
}
return
resp
.
ImageId
,
nil
return
resp
.
ImageId
,
nil
...
...
builder/amazon/ebs/step_create_ami.go
View file @
1b07d7eb
...
@@ -87,7 +87,7 @@ func (s *stepCreateAMI) Cleanup(state multistep.StateBag) {
...
@@ -87,7 +87,7 @@ func (s *stepCreateAMI) Cleanup(state multistep.StateBag) {
ui
.
Error
(
fmt
.
Sprintf
(
"Error deregistering AMI, may still be around: %s"
,
err
))
ui
.
Error
(
fmt
.
Sprintf
(
"Error deregistering AMI, may still be around: %s"
,
err
))
return
return
}
else
if
resp
.
Return
==
false
{
}
else
if
resp
.
Return
==
false
{
ui
.
Error
(
fmt
.
Sprintf
(
"Error deregistering AMI, may still be around: %
s
"
,
resp
.
Return
))
ui
.
Error
(
fmt
.
Sprintf
(
"Error deregistering AMI, may still be around: %
t
"
,
resp
.
Return
))
return
return
}
}
}
}
builder/digitalocean/builder_test.go
View file @
1b07d7eb
...
@@ -264,7 +264,7 @@ func TestBuilderPrepare_SSHUsername(t *testing.T) {
...
@@ -264,7 +264,7 @@ func TestBuilderPrepare_SSHUsername(t *testing.T) {
}
}
if
b
.
config
.
SSHUsername
!=
"root"
{
if
b
.
config
.
SSHUsername
!=
"root"
{
t
.
Errorf
(
"invalid: %
d
"
,
b
.
config
.
SSHUsername
)
t
.
Errorf
(
"invalid: %
s
"
,
b
.
config
.
SSHUsername
)
}
}
// Test set
// Test set
...
@@ -297,7 +297,7 @@ func TestBuilderPrepare_SSHTimeout(t *testing.T) {
...
@@ -297,7 +297,7 @@ func TestBuilderPrepare_SSHTimeout(t *testing.T) {
}
}
if
b
.
config
.
RawSSHTimeout
!=
"1m"
{
if
b
.
config
.
RawSSHTimeout
!=
"1m"
{
t
.
Errorf
(
"invalid: %
d
"
,
b
.
config
.
RawSSHTimeout
)
t
.
Errorf
(
"invalid: %
s
"
,
b
.
config
.
RawSSHTimeout
)
}
}
// Test set
// Test set
...
@@ -338,7 +338,7 @@ func TestBuilderPrepare_StateTimeout(t *testing.T) {
...
@@ -338,7 +338,7 @@ func TestBuilderPrepare_StateTimeout(t *testing.T) {
}
}
if
b
.
config
.
RawStateTimeout
!=
"6m"
{
if
b
.
config
.
RawStateTimeout
!=
"6m"
{
t
.
Errorf
(
"invalid: %
d
"
,
b
.
config
.
RawStateTimeout
)
t
.
Errorf
(
"invalid: %
s
"
,
b
.
config
.
RawStateTimeout
)
}
}
// Test set
// Test set
...
@@ -379,7 +379,7 @@ func TestBuilderPrepare_PrivateNetworking(t *testing.T) {
...
@@ -379,7 +379,7 @@ func TestBuilderPrepare_PrivateNetworking(t *testing.T) {
}
}
if
b
.
config
.
PrivateNetworking
!=
false
{
if
b
.
config
.
PrivateNetworking
!=
false
{
t
.
Errorf
(
"invalid: %
s
"
,
b
.
config
.
PrivateNetworking
)
t
.
Errorf
(
"invalid: %
t
"
,
b
.
config
.
PrivateNetworking
)
}
}
// Test set
// Test set
...
@@ -394,7 +394,7 @@ func TestBuilderPrepare_PrivateNetworking(t *testing.T) {
...
@@ -394,7 +394,7 @@ func TestBuilderPrepare_PrivateNetworking(t *testing.T) {
}
}
if
b
.
config
.
PrivateNetworking
!=
true
{
if
b
.
config
.
PrivateNetworking
!=
true
{
t
.
Errorf
(
"invalid: %
s
"
,
b
.
config
.
PrivateNetworking
)
t
.
Errorf
(
"invalid: %
t
"
,
b
.
config
.
PrivateNetworking
)
}
}
}
}
...
...
builder/googlecompute/step_create_instance_test.go
View file @
1b07d7eb
...
@@ -39,7 +39,7 @@ func TestStepCreateInstance(t *testing.T) {
...
@@ -39,7 +39,7 @@ func TestStepCreateInstance(t *testing.T) {
t
.
Fatal
(
"should've deleted instance"
)
t
.
Fatal
(
"should've deleted instance"
)
}
}
if
driver
.
DeleteInstanceZone
!=
config
.
Zone
{
if
driver
.
DeleteInstanceZone
!=
config
.
Zone
{
t
.
Fatal
(
"bad zone: %#v"
,
driver
.
DeleteInstanceZone
)
t
.
Fatal
f
(
"bad zone: %#v"
,
driver
.
DeleteInstanceZone
)
}
}
}
}
...
...
builder/googlecompute/step_teardown_instance_test.go
View file @
1b07d7eb
...
@@ -26,7 +26,7 @@ func TestStepTeardownInstance(t *testing.T) {
...
@@ -26,7 +26,7 @@ func TestStepTeardownInstance(t *testing.T) {
t
.
Fatal
(
"should've deleted instance"
)
t
.
Fatal
(
"should've deleted instance"
)
}
}
if
driver
.
DeleteInstanceZone
!=
config
.
Zone
{
if
driver
.
DeleteInstanceZone
!=
config
.
Zone
{
t
.
Fatal
(
"bad zone: %#v"
,
driver
.
DeleteInstanceZone
)
t
.
Fatal
f
(
"bad zone: %#v"
,
driver
.
DeleteInstanceZone
)
}
}
// cleanup
// cleanup
...
@@ -36,6 +36,6 @@ func TestStepTeardownInstance(t *testing.T) {
...
@@ -36,6 +36,6 @@ func TestStepTeardownInstance(t *testing.T) {
t
.
Fatal
(
"should've deleted disk"
)
t
.
Fatal
(
"should've deleted disk"
)
}
}
if
driver
.
DeleteDiskZone
!=
config
.
Zone
{
if
driver
.
DeleteDiskZone
!=
config
.
Zone
{
t
.
Fatal
(
"bad zone: %#v"
,
driver
.
DeleteDiskZone
)
t
.
Fatal
f
(
"bad zone: %#v"
,
driver
.
DeleteDiskZone
)
}
}
}
}
builder/openstack/artifact.go
View file @
1b07d7eb
...
@@ -41,6 +41,6 @@ func (a *Artifact) State(name string) interface{} {
...
@@ -41,6 +41,6 @@ func (a *Artifact) State(name string) interface{} {
}
}
func
(
a
*
Artifact
)
Destroy
()
error
{
func
(
a
*
Artifact
)
Destroy
()
error
{
log
.
Printf
(
"Destroying image: %
d
"
,
a
.
ImageId
)
log
.
Printf
(
"Destroying image: %
s
"
,
a
.
ImageId
)
return
a
.
Conn
.
DeleteImageById
(
a
.
ImageId
)
return
a
.
Conn
.
DeleteImageById
(
a
.
ImageId
)
}
}
builder/openstack/step_wait_for_rackconnect.go
View file @
1b07d7eb
...
@@ -21,7 +21,6 @@ func (s *StepWaitForRackConnect) Run(state multistep.StateBag) multistep.StepAct
...
@@ -21,7 +21,6 @@ func (s *StepWaitForRackConnect) Run(state multistep.StateBag) multistep.StepAct
csp
:=
state
.
Get
(
"csp"
)
.
(
gophercloud
.
CloudServersProvider
)
csp
:=
state
.
Get
(
"csp"
)
.
(
gophercloud
.
CloudServersProvider
)
server
:=
state
.
Get
(
"server"
)
.
(
*
gophercloud
.
Server
)
server
:=
state
.
Get
(
"server"
)
.
(
*
gophercloud
.
Server
)
ui
:=
state
.
Get
(
"ui"
)
.
(
packer
.
Ui
)
ui
:=
state
.
Get
(
"ui"
)
.
(
packer
.
Ui
)
fmt
.
Printf
(
"%s"
,
server
)
ui
.
Say
(
fmt
.
Sprintf
(
"Waiting for server (%s) to become RackConnect ready..."
,
server
.
Id
))
ui
.
Say
(
fmt
.
Sprintf
(
"Waiting for server (%s) to become RackConnect ready..."
,
server
.
Id
))
...
...
builder/parallels/iso/builder_test.go
View file @
1b07d7eb
...
@@ -75,7 +75,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
...
@@ -75,7 +75,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
}
}
if
b
.
config
.
DiskSize
!=
60000
{
if
b
.
config
.
DiskSize
!=
60000
{
t
.
Fatalf
(
"bad size: %
s
"
,
b
.
config
.
DiskSize
)
t
.
Fatalf
(
"bad size: %
d
"
,
b
.
config
.
DiskSize
)
}
}
}
}
...
...
builder/qemu/builder_test.go
View file @
1b07d7eb
...
@@ -160,7 +160,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
...
@@ -160,7 +160,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
}
}
if
b
.
config
.
DiskSize
!=
60000
{
if
b
.
config
.
DiskSize
!=
60000
{
t
.
Fatalf
(
"bad size: %
s
"
,
b
.
config
.
DiskSize
)
t
.
Fatalf
(
"bad size: %
d
"
,
b
.
config
.
DiskSize
)
}
}
}
}
...
...
builder/virtualbox/iso/builder_test.go
View file @
1b07d7eb
...
@@ -83,7 +83,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
...
@@ -83,7 +83,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
}
}
if
b
.
config
.
DiskSize
!=
60000
{
if
b
.
config
.
DiskSize
!=
60000
{
t
.
Fatalf
(
"bad size: %
s
"
,
b
.
config
.
DiskSize
)
t
.
Fatalf
(
"bad size: %
d
"
,
b
.
config
.
DiskSize
)
}
}
}
}
...
...
builder/vmware/common/step_shutdown_test.go
View file @
1b07d7eb
...
@@ -127,7 +127,7 @@ func TestStepShutdown_locks(t *testing.T) {
...
@@ -127,7 +127,7 @@ func TestStepShutdown_locks(t *testing.T) {
lockPath
:=
filepath
.
Join
(
dir
.
dir
,
"nope.lck"
)
lockPath
:=
filepath
.
Join
(
dir
.
dir
,
"nope.lck"
)
err
:=
ioutil
.
WriteFile
(
lockPath
,
[]
byte
(
"foo"
),
0644
)
err
:=
ioutil
.
WriteFile
(
lockPath
,
[]
byte
(
"foo"
),
0644
)
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatalf
(
"err: %s"
)
t
.
Fatalf
(
"err: %s"
,
err
)
}
}
// Remove the lock file after a certain time
// Remove the lock file after a certain time
...
...
builder/vmware/iso/builder_test.go
View file @
1b07d7eb
...
@@ -175,7 +175,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
...
@@ -175,7 +175,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
}
}
if
b
.
config
.
DiskSize
!=
60000
{
if
b
.
config
.
DiskSize
!=
60000
{
t
.
Fatalf
(
"bad size: %
s
"
,
b
.
config
.
DiskSize
)
t
.
Fatalf
(
"bad size: %
d
"
,
b
.
config
.
DiskSize
)
}
}
}
}
...
...
common/step_create_floppy_test.go
View file @
1b07d7eb
...
@@ -76,7 +76,7 @@ func TestStepCreateFloppy(t *testing.T) {
...
@@ -76,7 +76,7 @@ func TestStepCreateFloppy(t *testing.T) {
floppy_path
:=
state
.
Get
(
"floppy_path"
)
.
(
string
)
floppy_path
:=
state
.
Get
(
"floppy_path"
)
.
(
string
)
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
!=
nil
{
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
!=
nil
{
t
.
Fatal
(
"file not found: %s for %v"
,
floppy_path
,
step
.
Files
)
t
.
Fatal
f
(
"file not found: %s for %v"
,
floppy_path
,
step
.
Files
)
}
}
if
len
(
step
.
FilesAdded
)
!=
expected
{
if
len
(
step
.
FilesAdded
)
!=
expected
{
...
@@ -86,7 +86,7 @@ func TestStepCreateFloppy(t *testing.T) {
...
@@ -86,7 +86,7 @@ func TestStepCreateFloppy(t *testing.T) {
step
.
Cleanup
(
state
)
step
.
Cleanup
(
state
)
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
==
nil
{
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
==
nil
{
t
.
Fatal
(
"file found: %s for %v"
,
floppy_path
,
step
.
Files
)
t
.
Fatal
f
(
"file found: %s for %v"
,
floppy_path
,
step
.
Files
)
}
}
}
}
}
}
...
@@ -177,7 +177,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
...
@@ -177,7 +177,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
floppy_path
:=
state
.
Get
(
"floppy_path"
)
.
(
string
)
floppy_path
:=
state
.
Get
(
"floppy_path"
)
.
(
string
)
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
!=
nil
{
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
!=
nil
{
t
.
Fatal
(
"file not found: %s for %v"
,
floppy_path
,
step
.
Files
)
t
.
Fatal
f
(
"file not found: %s for %v"
,
floppy_path
,
step
.
Files
)
}
}
if
len
(
step
.
FilesAdded
)
!=
expected
{
if
len
(
step
.
FilesAdded
)
!=
expected
{
...
@@ -187,7 +187,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
...
@@ -187,7 +187,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
step
.
Cleanup
(
state
)
step
.
Cleanup
(
state
)
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
==
nil
{
if
_
,
err
:=
os
.
Stat
(
floppy_path
);
err
==
nil
{
t
.
Fatal
(
"file found: %s for %v"
,
floppy_path
,
step
.
Files
)
t
.
Fatal
f
(
"file found: %s for %v"
,
floppy_path
,
step
.
Files
)
}
}
}
}
}
}
communicator/ssh/communicator_test.go
View file @
1b07d7eb
...
@@ -83,10 +83,10 @@ func newMockLineServer(t *testing.T) string {
...
@@ -83,10 +83,10 @@ func newMockLineServer(t *testing.T) string {
}
}
t
.
Log
(
"Accepted channel"
)
t
.
Log
(
"Accepted channel"
)
go
func
()
{
go
func
(
channelType
string
)
{
defer
channel
.
Close
()
defer
channel
.
Close
()
conn
.
OpenChannel
(
newChannel
.
ChannelType
()
,
nil
)
conn
.
OpenChannel
(
channelType
,
nil
)
}()
}(
newChannel
.
ChannelType
()
)
}
}
conn
.
Close
()
conn
.
Close
()
}()
}()
...
...
packer/template_test.go
View file @
1b07d7eb
...
@@ -497,7 +497,7 @@ func TestParseTemplate_Provisioners(t *testing.T) {
...
@@ -497,7 +497,7 @@ func TestParseTemplate_Provisioners(t *testing.T) {
result
,
err
:=
ParseTemplate
([]
byte
(
data
),
nil
)
result
,
err
:=
ParseTemplate
([]
byte
(
data
),
nil
)
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatal
(
"err: %s"
,
err
)
t
.
Fatal
f
(
"err: %s"
,
err
)
}
}
if
result
==
nil
{
if
result
==
nil
{
t
.
Fatal
(
"should have result"
)
t
.
Fatal
(
"should have result"
)
...
@@ -529,7 +529,7 @@ func TestParseTemplate_ProvisionerPauseBefore(t *testing.T) {
...
@@ -529,7 +529,7 @@ func TestParseTemplate_ProvisionerPauseBefore(t *testing.T) {
result
,
err
:=
ParseTemplate
([]
byte
(
data
),
nil
)
result
,
err
:=
ParseTemplate
([]
byte
(
data
),
nil
)
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatal
(
"err: %s"
,
err
)
t
.
Fatal
f
(
"err: %s"
,
err
)
}
}
if
result
==
nil
{
if
result
==
nil
{
t
.
Fatal
(
"should have result"
)
t
.
Fatal
(
"should have result"
)
...
...
post-processor/vagrant-cloud/client.go
View file @
1b07d7eb
...
@@ -78,7 +78,7 @@ func (v VagrantCloudClient) Get(path string) (*http.Response, error) {
...
@@ -78,7 +78,7 @@ func (v VagrantCloudClient) Get(path string) (*http.Response, error) {
req
.
Header
.
Add
(
"Content-Type"
,
"application/json"
)
req
.
Header
.
Add
(
"Content-Type"
,
"application/json"
)
resp
,
err
:=
v
.
client
.
Do
(
req
)
resp
,
err
:=
v
.
client
.
Do
(
req
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
s
"
,
resp
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
+v
"
,
resp
)
return
resp
,
err
return
resp
,
err
}
}
...
@@ -96,7 +96,7 @@ func (v VagrantCloudClient) Delete(path string) (*http.Response, error) {
...
@@ -96,7 +96,7 @@ func (v VagrantCloudClient) Delete(path string) (*http.Response, error) {
req
.
Header
.
Add
(
"Content-Type"
,
"application/json"
)
req
.
Header
.
Add
(
"Content-Type"
,
"application/json"
)
resp
,
err
:=
v
.
client
.
Do
(
req
)
resp
,
err
:=
v
.
client
.
Do
(
req
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
s
"
,
resp
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
+v
"
,
resp
)
return
resp
,
err
return
resp
,
err
}
}
...
@@ -128,7 +128,7 @@ func (v VagrantCloudClient) Upload(path string, url string) (*http.Response, err
...
@@ -128,7 +128,7 @@ func (v VagrantCloudClient) Upload(path string, url string) (*http.Response, err
resp
,
err
:=
v
.
client
.
Do
(
request
)
resp
,
err
:=
v
.
client
.
Do
(
request
)
log
.
Printf
(
"Post-Processor Vagrant Cloud Upload Response:
\n\n
%
s
"
,
resp
)
log
.
Printf
(
"Post-Processor Vagrant Cloud Upload Response:
\n\n
%
+v
"
,
resp
)
return
resp
,
err
return
resp
,
err
}
}
...
@@ -153,7 +153,7 @@ func (v VagrantCloudClient) Post(path string, body interface{}) (*http.Response,
...
@@ -153,7 +153,7 @@ func (v VagrantCloudClient) Post(path string, body interface{}) (*http.Response,
resp
,
err
:=
v
.
client
.
Do
(
req
)
resp
,
err
:=
v
.
client
.
Do
(
req
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
s
"
,
resp
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
+v
"
,
resp
)
return
resp
,
err
return
resp
,
err
}
}
...
@@ -172,7 +172,7 @@ func (v VagrantCloudClient) Put(path string) (*http.Response, error) {
...
@@ -172,7 +172,7 @@ func (v VagrantCloudClient) Put(path string) (*http.Response, error) {
resp
,
err
:=
v
.
client
.
Do
(
req
)
resp
,
err
:=
v
.
client
.
Do
(
req
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
s
"
,
resp
)
log
.
Printf
(
"Post-Processor Vagrant Cloud API Response:
\n\n
%
+v
"
,
resp
)
return
resp
,
err
return
resp
,
err
}
}
post-processor/vagrant/post-processor_test.go
View file @
1b07d7eb
...
@@ -132,7 +132,7 @@ func TestPostProcessorPrepare_vagrantfileTemplateExists(t *testing.T) {
...
@@ -132,7 +132,7 @@ func TestPostProcessorPrepare_vagrantfileTemplateExists(t *testing.T) {
c
[
"vagrantfile_template"
]
=
name
c
[
"vagrantfile_template"
]
=
name
if
err
:=
f
.
Close
();
err
!=
nil
{
if
err
:=
f
.
Close
();
err
!=
nil
{
t
.
Fatal
(
"err: %s"
,
err
)
t
.
Fatal
f
(
"err: %s"
,
err
)
}
}
if
err
:=
os
.
Remove
(
name
);
err
!=
nil
{
if
err
:=
os
.
Remove
(
name
);
err
!=
nil
{
...
...
provisioner/puppet-masterless/provisioner.go
View file @
1b07d7eb
...
@@ -190,7 +190,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
...
@@ -190,7 +190,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
fmt
.
Errorf
(
"module_path[%d] is invalid: %s"
,
i
,
err
))
fmt
.
Errorf
(
"module_path[%d] is invalid: %s"
,
i
,
err
))
}
else
if
!
info
.
IsDir
()
{
}
else
if
!
info
.
IsDir
()
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
errs
=
packer
.
MultiErrorAppend
(
errs
,
fmt
.
Errorf
(
"module_path[%d] must point to a directory"
))
fmt
.
Errorf
(
"module_path[%d] must point to a directory"
,
i
))
}
}
}
}
...
...
provisioner/salt-masterless/provisioner.go
View file @
1b07d7eb
...
@@ -118,14 +118,14 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
...
@@ -118,14 +118,14 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
}
}
ui
.
Message
(
fmt
.
Sprintf
(
"Downloading saltstack bootstrap to /tmp/install_salt.sh"
))
ui
.
Message
(
fmt
.
Sprintf
(
"Downloading saltstack bootstrap to /tmp/install_salt.sh"
))
if
err
=
cmd
.
StartWithUi
(
comm
,
ui
);
err
!=
nil
{
if
err
=
cmd
.
StartWithUi
(
comm
,
ui
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Unable to download Salt: %
d
"
,
err
)
return
fmt
.
Errorf
(
"Unable to download Salt: %
s
"
,
err
)
}
}
cmd
=
&
packer
.
RemoteCmd
{
cmd
=
&
packer
.
RemoteCmd
{
Command
:
fmt
.
Sprintf
(
"sudo sh /tmp/install_salt.sh %s"
,
p
.
config
.
BootstrapArgs
),
Command
:
fmt
.
Sprintf
(
"sudo sh /tmp/install_salt.sh %s"
,
p
.
config
.
BootstrapArgs
),
}
}
ui
.
Message
(
fmt
.
Sprintf
(
"Installing Salt with command %s"
,
cmd
))
ui
.
Message
(
fmt
.
Sprintf
(
"Installing Salt with command %s"
,
cmd
.
Command
))
if
err
=
cmd
.
StartWithUi
(
comm
,
ui
);
err
!=
nil
{
if
err
=
cmd
.
StartWithUi
(
comm
,
ui
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Unable to install Salt: %
d
"
,
err
)
return
fmt
.
Errorf
(
"Unable to install Salt: %
s
"
,
err
)
}
}
}
}
...
@@ -146,7 +146,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
...
@@ -146,7 +146,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
src
=
filepath
.
ToSlash
(
filepath
.
Join
(
p
.
config
.
TempConfigDir
,
"minion"
))
src
=
filepath
.
ToSlash
(
filepath
.
Join
(
p
.
config
.
TempConfigDir
,
"minion"
))
dst
=
"/etc/salt/minion"
dst
=
"/etc/salt/minion"
if
err
=
p
.
moveFile
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
if
err
=
p
.
moveFile
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Unable to move %s/minion to /etc/salt/minion: %
d
"
,
p
.
config
.
TempConfigDir
,
err
)
return
fmt
.
Errorf
(
"Unable to move %s/minion to /etc/salt/minion: %
s
"
,
p
.
config
.
TempConfigDir
,
err
)
}
}
}
}
...
@@ -161,7 +161,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
...
@@ -161,7 +161,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
src
=
filepath
.
ToSlash
(
filepath
.
Join
(
p
.
config
.
TempConfigDir
,
"states"
))
src
=
filepath
.
ToSlash
(
filepath
.
Join
(
p
.
config
.
TempConfigDir
,
"states"
))
dst
=
"/srv/salt"
dst
=
"/srv/salt"
if
err
=
p
.
moveFile
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
if
err
=
p
.
moveFile
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Unable to move %s/states to /srv/salt: %
d
"
,
p
.
config
.
TempConfigDir
,
err
)
return
fmt
.
Errorf
(
"Unable to move %s/states to /srv/salt: %
s
"
,
p
.
config
.
TempConfigDir
,
err
)
}
}
if
p
.
config
.
LocalPillarRoots
!=
""
{
if
p
.
config
.
LocalPillarRoots
!=
""
{
...
@@ -176,7 +176,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
...
@@ -176,7 +176,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
src
=
filepath
.
ToSlash
(
filepath
.
Join
(
p
.
config
.
TempConfigDir
,
"pillar"
))
src
=
filepath
.
ToSlash
(
filepath
.
Join
(
p
.
config
.
TempConfigDir
,
"pillar"
))
dst
=
"/srv/pillar"
dst
=
"/srv/pillar"
if
err
=
p
.
moveFile
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
if
err
=
p
.
moveFile
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Unable to move %s/pillar to /srv/pillar: %
d
"
,
p
.
config
.
TempConfigDir
,
err
)
return
fmt
.
Errorf
(
"Unable to move %s/pillar to /srv/pillar: %
s
"
,
p
.
config
.
TempConfigDir
,
err
)
}
}
}
}
...
@@ -220,7 +220,7 @@ func (p *Provisioner) moveFile(ui packer.Ui, comm packer.Communicator, dst, src
...
@@ -220,7 +220,7 @@ func (p *Provisioner) moveFile(ui packer.Ui, comm packer.Communicator, dst, src
err
=
fmt
.
Errorf
(
"Bad exit status: %d"
,
cmd
.
ExitStatus
)
err
=
fmt
.
Errorf
(
"Bad exit status: %d"
,
cmd
.
ExitStatus
)
}
}
return
fmt
.
Errorf
(
"Unable to move %s/minion to /etc/salt/minion: %
d
"
,
p
.
config
.
TempConfigDir
,
err
)
return
fmt
.
Errorf
(
"Unable to move %s/minion to /etc/salt/minion: %
s
"
,
p
.
config
.
TempConfigDir
,
err
)
}
}
return
nil
return
nil
}
}
...
...
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