1. 15 Apr, 2015 2 commits
  2. 13 Apr, 2015 1 commit
    • James Nugent's avatar
      Migrate from mitchellh/goamz to awslabs/aws-sdk-go · e99cd56b
      James Nugent authored
      This commit moves the Amazon builders of Packer away from the Hashicorp
      fork of the goamz library to the official AWS SDK for Go, in order that
      third party plugins may depend on the more complete official library
      more easily.
      e99cd56b
  3. 19 Mar, 2015 3 commits
  4. 16 Mar, 2015 3 commits
  5. 13 Mar, 2015 4 commits
  6. 11 Mar, 2015 1 commit
  7. 10 Mar, 2015 1 commit
  8. 05 Mar, 2015 2 commits
  9. 25 Feb, 2015 23 commits
    • Seth Vargo's avatar
      Merge pull request #1769 from ceh/vet-fixes · 1b07d7eb
      Seth Vargo authored
      Address go vet reports
      1b07d7eb
    • Emil Hessman's avatar
      Makefile: add vet target · ffd570fe
      Emil Hessman authored
      ffd570fe
    • Emil Hessman's avatar
      provisioner/salt-masterless: fix incorrect printf verb types · 3165b0c9
      Emil Hessman authored
      Fixes the following vet reports:
      
      provisioner/salt-masterless/provisioner.go:119: arg cmd for printf verb %s of wrong type: *github.com/mitchellh/packer/packer.RemoteCmd
      provisioner/salt-masterless/provisioner.go:121: arg err for printf verb %d of wrong type: error
      provisioner/salt-masterless/provisioner.go:142: arg err for printf verb %d of wrong type: error
      provisioner/salt-masterless/provisioner.go:157: arg err for printf verb %d of wrong type: error
      provisioner/salt-masterless/provisioner.go:172: arg err for printf verb %d of wrong type: error
      provisioner/salt-masterless/provisioner.go:216: arg err for printf verb %d of wrong type: error
      3165b0c9
    • Emil Hessman's avatar
      provisioner/puppet-masterless: fix missing format argument · 92704b69
      Emil Hessman authored
      Fixes the following vet report:
      
      provisioner/puppet-masterless/provisioner.go:196: missing argument for Errorf(%d): format reads arg 1, have only 0 args
      92704b69
    • Emil Hessman's avatar
      post-processor/vagrant-cloud: fix incorrect printf verb types · 8144c92d
      Emil Hessman authored
      Fixes the following vet reports:
      
      post-processor/vagrant-cloud/client.go:81: arg resp for printf verb %s of wrong type: *net/http.Response
      post-processor/vagrant-cloud/client.go:99: arg resp for printf verb %s of wrong type: *net/http.Response
      post-processor/vagrant-cloud/client.go:131: arg resp for printf verb %s of wrong type: *net/http.Response
      post-processor/vagrant-cloud/client.go:156: arg resp for printf verb %s of wrong type: *net/http.Response
      post-processor/vagrant-cloud/client.go:175: arg resp for printf verb %s of wrong type: *net/http.Response
      8144c92d
    • Emil Hessman's avatar
      post-processor/vagrant: address vet report · 9c31822a
      Emil Hessman authored
      Fixes the following vet report:
      
      post-processor/vagrant/post-processor_test.go:135: possible formatting directive in Fatal call
      9c31822a
    • Emil Hessman's avatar
      packer: fix formatting directives in test · d9abb545
      Emil Hessman authored
      Fixes the following vet reports:
      
      packer/template_test.go:496: possible formatting directive in Fatal call
      packer/template_test.go:528: possible formatting directive in Fatal call
      d9abb545
    • Emil Hessman's avatar
      communicator/ssh: bind variable value to closure · c4d4e0a2
      Emil Hessman authored
      Fixes the following vet report:
      
      communicator/ssh/communicator_test.go:88: range variable newChannel captured by func literal
      c4d4e0a2
    • Emil Hessman's avatar
      common: fix formatting directives in tests · 952ae516
      Emil Hessman authored
      Fixes the following vet reports:
      
      common/step_create_floppy_test.go:79: possible formatting directive in Fatal call
      common/step_create_floppy_test.go:89: possible formatting directive in Fatal call
      common/step_create_floppy_test.go:180: possible formatting directive in Fatal call
      common/step_create_floppy_test.go:190: possible formatting directive in Fatal call
      952ae516
    • Emil Hessman's avatar
      builder/vmware/iso: fix incorrect printf verb type in test · 57468b3d
      Emil Hessman authored
      Fixes the following vet report:
      
      builder/vmware/iso/builder_test.go:178: arg b.config.DiskSize for printf verb %s of wrong type: uint
      57468b3d
    • Emil Hessman's avatar
      builder/vmware/common: fix missing format argument for Fatalf call in test · fdb64f6f
      Emil Hessman authored
      Fixes the following vet report:
      
      builder/vmware/common/step_shutdown_test.go:130: missing argument for Fatalf("%s"): format reads arg 1, have only 0 args
      fdb64f6f
    • Emil Hessman's avatar
      builder/virtualbox/iso: fix incorrect printf verb type · 96b62af5
      Emil Hessman authored
      Fixes the following vet report:
      
      builder/virtualbox/iso/builder_test.go:86: arg b.config.DiskSize for printf verb %s of wrong type: uint
      96b62af5
    • Emil Hessman's avatar
      builder/qemu: fix incorrect printf verb type · cceb4b28
      Emil Hessman authored
      Fixes the following vet report:
      
      builder/qemu/builder_test.go:163: arg b.config.DiskSize for printf verb %s of wrong type: uint
      cceb4b28
    • Emil Hessman's avatar
      builder/parallels/iso: fix incorrect printf verb type · b19f9b97
      Emil Hessman authored
      Fixes the following vet report:
      
      builder/parallels/iso/builder_test.go:78: arg b.config.DiskSize for printf verb %s of wrong type: uint
      b19f9b97
    • Emil Hessman's avatar
      builder/openstack: address vet reports · f5782084
      Emil Hessman authored
      Fixes the following vet reports:
      
      builder/openstack/artifact.go:44: arg a.ImageId for printf verb %d of wrong type: string
      builder/openstack/step_wait_for_rackconnect.go:24: arg server for printf verb %s of wrong type: *github.com/mitchellh/gophercloud-fork-40444fb.Server
      f5782084
    • Emil Hessman's avatar
      builder/googlecompute: fix formatting directives · 002e50f4
      Emil Hessman authored
      Fixes the following vet reports:
      
      builder/googlecompute/step_create_instance_test.go:42: possible formatting directive in Fatal call
      builder/googlecompute/step_teardown_instance_test.go:29: possible formatting directive in Fatal call
      builder/googlecompute/step_teardown_instance_test.go:39: possible formatting directive in Fatal call
      002e50f4
    • Emil Hessman's avatar
      builder/digitalocean: fix incorrect printf verb types · 413b84af
      Emil Hessman authored
      Fixes the following vet reports:
      
      builder/digitalocean/builder_test.go:267: arg b.config.SSHUsername for printf verb %d of wrong type: string
      builder/digitalocean/builder_test.go:300: arg b.config.RawSSHTimeout for printf verb %d of wrong type: string
      builder/digitalocean/builder_test.go:341: arg b.config.RawStateTimeout for printf verb %d of wrong type: string
      builder/digitalocean/builder_test.go:382: arg b.config.PrivateNetworking for printf verb %s of wrong type: bool
      builder/digitalocean/builder_test.go:397: arg b.config.PrivateNetworking for printf verb %s of wrong type: bool
      413b84af
    • Emil Hessman's avatar
      builder/amazon/ebs: fix incorrect printf verb type · 505f51ff
      Emil Hessman authored
      Fixes the following vet report:
      
      builder/amazon/ebs/step_create_ami.go:90: arg resp.Return for printf verb %s of wrong type: bool
      505f51ff
    • Emil Hessman's avatar
      builder/amazon/common: fix incorrect printf verb type in amiRegionCopy · 05c22066
      Emil Hessman authored
      Fixes the following vet reports:
      
      builder/amazon/common/step_ami_region_copy.go:81: arg target for printf verb %s of wrong type: github.com/mitchellh/goamz/aws.Region
      builder/amazon/common/step_ami_region_copy.go:93: arg target for printf verb %s of wrong type: github.com/mitchellh/goamz/aws.Region
      05c22066
    • Seth Vargo's avatar
      Merge pull request #1846 from lalyos/patch-1 · 8c36684e
      Seth Vargo authored
      docs/templates: add note about escaping
      8c36684e
    • Seth Vargo's avatar
      Merge pull request #1885 from ceh/fix-win-test · 06e73691
      Seth Vargo authored
      post-processor/vagrant: fix test failure on Windows
      06e73691
    • Seth Vargo's avatar
      Update CHANGELOG · 2067e312
      Seth Vargo authored
      2067e312
    • Seth Vargo's avatar
      Merge pull request #1925 from tdooner/add_rackconnect_support · c338d313
      Seth Vargo authored
      Add Rackconnect support to openstack builder
      c338d313