From aa737a58621a30c1a2260e04e3623b80deb3c9c2 Mon Sep 17 00:00:00 2001 From: Diego Casati Date: Wed, 18 Apr 2018 10:08:00 -0700 Subject: [PATCH 1/2] Add a FreeBSD example --- examples/azure/freebsd.json | 46 +++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 examples/azure/freebsd.json diff --git a/examples/azure/freebsd.json b/examples/azure/freebsd.json new file mode 100644 index 000000000..991950b73 --- /dev/null +++ b/examples/azure/freebsd.json @@ -0,0 +1,46 @@ +{ + "variables": { + "client_id": "{{env `ARM_CLIENT_ID`}}", + "client_secret": "{{env `ARM_CLIENT_SECRET`}}", + "resource_group": "{{env `ARM_RESOURCE_GROUP`}}", + "storage_account": "{{env `ARM_STORAGE_ACCOUNT`}}", + "subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}", + "ssh_user": "packer", + "ssh_pass": null + }, + "builders": [{ + "type": "azure-arm", + + "client_id": "{{user `client_id`}}", + "client_secret": "{{user `client_secret`}}", + "resource_group_name": "{{user `resource_group`}}", + "storage_account": "{{user `storage_account`}}", + "subscription_id": "{{user `subscription_id`}}", + + "capture_container_name": "images", + "capture_name_prefix": "packer", + + "ssh_username": "{{user `ssh_user`}}", + "ssh_password": "{{user `ssh_pass`}}", + + "os_type": "Linux", + "image_publisher": "MicrosoftOSTC", + "image_offer": "FreeBSD", + "image_sku": "11.1", + "image_version": "latest", + + "location": "West US 2", + "vm_size": "Standard_DS2_v2" + }], + "provisioners": [{ + "execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'", + "inline": [ + "env ASSUME_ALWAYS_YES=YES pkg bootstrap", + "/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync" + ], + "inline_shebang": "/bin/sh -x", + "type": "shell", + "skip_clean": "true" + }] + +} From de429da5f9d87a30421f35b15bdaa647f6523052 Mon Sep 17 00:00:00 2001 From: Diego Casati Date: Wed, 18 Apr 2018 12:05:27 -0700 Subject: [PATCH 2/2] add expect_disconnect otherwise the build fails --- examples/azure/freebsd.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/azure/freebsd.json b/examples/azure/freebsd.json index 991950b73..33f90c9a6 100644 --- a/examples/azure/freebsd.json +++ b/examples/azure/freebsd.json @@ -40,7 +40,8 @@ ], "inline_shebang": "/bin/sh -x", "type": "shell", - "skip_clean": "true" + "skip_clean": "true", + "expect_disconnect": "true" }] }