Re: [packer] Packer builder for Xenserver

2019-08-14 Thread Antony Nixson
Hello Megan, Thanks for replying, yes i have set the environment variable PACKER_LOG=1, so that i can see the logs, Thanks, -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those

Re: [packer] Using Packer to build a windows box and provision with Ansible

2019-08-14 Thread 'Richard Payne' via Packer
Yeah, the relevant directories are accessible and writable by my user. I have managed to get it working using this: https://www.packer.io/docs/provisioners/ansible.html You have to create connection plugin alongside the playbook. On Tuesday, 13 August 2019 11:45:23 UTC+1, deanwarrenuk wrote: >

Re: [packer] Windows2016 guest on RHEL linux host never ending winrm loop

2019-08-14 Thread Automationbuilder360 Builder
Hi All, Any help on this much appreciated..! I have also tried with base image provided by MS, but still the VBOX crashed on windows host On Tuesday, 13 August 2019 19:55:47 UTC+5:30, Automationbuilder360 Builder wrote: > > Yes..! when i try to boot VBOX VM with the ISO the server crashes

[packer] Packer v1.4.3 is released!

2019-08-14 Thread Megan Marsh
Hi Packer community! Packer 1.4.3 is finally out, and it's a big one! We have: - FOUR new builders -- Ucloud, Outscale, JDCloud, and Virtualbox Snapshot. - a new Exoscale import post-processor. - dozens of bugfixes, including a fix for an Azure crash that was introduced in 1.4.2, and a fix to

[packer] Re: Trouble with sshd_config with packer + virtualbox + vagrant

2019-08-14 Thread Stephen Schlie
As it turns out I'm a complete moron, our setup for Vagrant has a file that overrides some settings, and I missed that it was overriding which box to use, once set correctly things are working just fine. While I'm upset about being a moron I'm happy I'm not insane. On Wednesday, August 14,

[packer] InSpec breaking Packer build

2019-08-14 Thread Stephen Bennett
Hi, Trying to add Inspec tests to my packer build, if i take out the inspec provisioner this runs (Attached packer json). Any ideas whats going on? InSpec code: { "type": "inspec", "profile": "https://github.com/dev-sec/windows-patch-baseline;, "extra_arguments": [

[packer] Trouble with sshd_config with packer + virtualbox + vagrant

2019-08-14 Thread Stephen Schlie
Hi Folks, I've run into an issue recently with packer where my output vagrant box has password based ssh disabled by default, even when I explicitly enable it in the last provisioner step. I'll include the template json below but in short we build an ubuntu 18.04.3 image with the

Re: [packer] Trouble with sshd_config with packer + virtualbox + vagrant

2019-08-14 Thread Rickard von Essen
One guess would be that cloud-init might do this. On Wed, Aug 14, 2019, 19:19 Stephen Schlie wrote: > Hi Folks, > > I've run into an issue recently with packer where my output vagrant box > has password based ssh disabled by default, even when I explicitly enable > it in the last provisioner

Re: [packer] Trouble with sshd_config with packer + virtualbox + vagrant

2019-08-14 Thread Stephen Schlie
I had thought the same but cloud-init does not seem to be installed on the 18.04.3 server image (http://cdimage.ubuntu.com/ubuntu/releases/bionic/release/ubuntu-18.04.3-server-amd64.iso) so I'm reasonably confident that isn't it, unless cloud-init is sneakily on there somehow but not showing?