Last active
June 10, 2019 15:36
-
-
Save petemounce/dd068b390c19c0d2df6d71c39c3b991c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( | |
[string] $username = "tweeter", | |
[string] $open_ssh_version = "v7.9.0.0p1-Beta" | |
) | |
$ErrorActionPreference = 'Stop'; # stop on all errors | |
# make the user | |
$Count = Get-Random -min 24 -max 32 | |
$TempPassword = -join ((65..90) + (97..122) + (48..57) | Get-Random -Count $Count | % {[char]$_}) | |
New-LocalUser -Name $username -PasswordNeverExpires -Password ($TempPassword | ConvertTo-SecureString -AsPlainText -Force) | out-null | |
Add-LocalGroupMember -Group "Administrators" -Member $username | out-null | |
# make the user profile | |
#function to register a native method | |
function Register-NativeMethod | |
{ | |
[CmdletBinding()] | |
[Alias()] | |
[OutputType([int])] | |
Param | |
( | |
# Param1 help description | |
[Parameter(Mandatory=$true, | |
ValueFromPipelineByPropertyName=$true, | |
Position=0)] | |
[string]$dll, | |
# Param2 help description | |
[Parameter(Mandatory=$true, | |
ValueFromPipelineByPropertyName=$true, | |
Position=1)] | |
[string] | |
$methodSignature | |
) | |
$script:nativeMethods += [PSCustomObject]@{ Dll = $dll; Signature = $methodSignature; } | |
} | |
function Get-Win32LastError | |
{ | |
[CmdletBinding()] | |
[Alias()] | |
[OutputType([int])] | |
Param($typeName = 'LastError') | |
if (-not ([System.Management.Automation.PSTypeName]$typeName).Type) | |
{ | |
$lasterrorCode = $script:lasterror | ForEach-Object{ | |
'[DllImport("kernel32.dll", SetLastError = true)] | |
public static extern uint GetLastError();' | |
} | |
Add-Type @" | |
using System; | |
using System.Text; | |
using System.Runtime.InteropServices; | |
public static class $typeName { | |
$lasterrorCode | |
} | |
"@ | |
} | |
} | |
#function to add native method | |
function Add-NativeMethods | |
{ | |
[CmdletBinding()] | |
[Alias()] | |
[OutputType([int])] | |
Param($typeName = 'NativeMethods') | |
$nativeMethodsCode = $script:nativeMethods | ForEach-Object { " | |
[DllImport(`"$($_.Dll)`")] | |
public static extern $($_.Signature); | |
" } | |
Add-Type @" | |
using System; | |
using System.Text; | |
using System.Runtime.InteropServices; | |
public static class $typeName { | |
$nativeMethodsCode | |
} | |
"@ | |
} | |
$methodName = 'UserEnvCP' | |
$script:nativeMethods = @(); | |
Register-NativeMethod "userenv.dll" "int CreateProfile([MarshalAs(UnmanagedType.LPWStr)] string pszUserSid,` | |
[MarshalAs(UnmanagedType.LPWStr)] string pszUserName,` | |
[Out][MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszProfilePath, uint cchProfilePath)"; | |
Add-NativeMethods -typeName $MethodName; | |
$localUser = New-Object System.Security.Principal.NTAccount("$username"); | |
$userSID = $localUser.Translate([System.Security.Principal.SecurityIdentifier]); | |
$sb = new-object System.Text.StringBuilder(260); | |
$pathLen = $sb.Capacity; | |
Write-Verbose "Creating user profile for $username"; | |
try | |
{ | |
[UserEnvCP]::CreateProfile($userSID.Value, $username, $sb, $pathLen) | Out-Null; | |
} | |
catch | |
{ | |
Write-Error $_.Exception.Message; | |
break; | |
} | |
New-Item "c:/users/$username/.ssh" -type Directory | |
$public_key_base64 = get-gcemetadata -path "instance/attributes/imp-public-key-base64" | |
$public_key = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($public_key_base64)) | |
Set-Content -Path "c:/users/$username/.ssh/authorized_keys" -Value "$public_key" | |
# Install openssh | |
# https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH | |
$url = "https://github.com/PowerShell/Win32-OpenSSH/releases/download/$($open_ssh_version)/OpenSSH-Win64.zip" | |
$output = "$($env:TEMP)/OpenSSH-Win64.zip" | |
# github went TLS 1.2 only from 2018 | |
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12; | |
(New-Object System.Net.WebClient).DownloadFile($url, $output) | |
Expand-Archive -Path $output -DestinationPath "$($env:PROGRAMFILES)" | |
. "$($env:PROGRAMFILES)/OpenSSH-Win64/install-sshd.ps1" | |
# Set default shell for sshd connections to powershell to avoid legacy cmd nonsense | |
# https://github.com/PowerShell/Win32-OpenSSH/wiki/DefaultShell | |
[System.Environment]::SetEnvironmentVariable("PATH", "$($env:PATH);c:\Program Files\OpenSSH-Win64", [System.EnvironmentVariableTarget]::Machine) | |
New-Item -path "HKLM:\SOFTWARE\OpenSSH" -force | |
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -PropertyType String -Force | |
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShellCommandOption -Value "/c" -PropertyType String -Force | |
# Adjust sshd_config to | |
# * allow public key authentication | |
# * remove 2 lines that prevent pubkey authentication working | |
New-Item "$($env:PROGRAMDATA)/ssh" -Type Directory -Force | |
$sshd_config_path = "$($env:PROGRAMDATA)/ssh/sshd_config" | |
$sshd_config_base64 = get-gcemetadata -path "instance/attributes/imp-sshd-config-base64" | |
$sshd_config_text = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($sshd_config_base64)) | |
Set-Content -Path "$($sshd_config_path)" -Value "$($sshd_config_text)" | |
Restart-Service sshd | |
Set-Service sshd -StartupType Automatic | |
# lastly, open up the firewall port | |
New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 [DEBUG] Discovered plugin: goss = /Users/petermounce/.packer.d/plugins/packer-provisioner-goss | |
2019/06/10 16:28:11 Using internal plugin for hcloud | |
2019/06/10 16:28:11 Using internal plugin for hyperv-vmcx | |
2019/06/10 16:28:11 Using internal plugin for virtualbox-ovf | |
2019/06/10 16:28:11 Using internal plugin for vmware-iso | |
2019/06/10 16:28:11 Using internal plugin for vmware-vmx | |
2019/06/10 16:28:11 Using internal plugin for azure-arm | |
2019/06/10 16:28:11 Using internal plugin for virtualbox-iso | |
2019/06/10 16:28:11 Using internal plugin for null | |
2019/06/10 16:28:11 Using internal plugin for parallels-pvm | |
2019/06/10 16:28:11 Using internal plugin for qemu | |
2019/06/10 16:28:11 Using internal plugin for vagrant | |
2019/06/10 16:28:11 Using internal plugin for googlecompute | |
2019/06/10 16:28:11 Using internal plugin for lxd | |
2019/06/10 16:28:11 Using internal plugin for ncloud | |
2019/06/10 16:28:11 Using internal plugin for openstack | |
2019/06/10 16:28:11 Using internal plugin for oracle-oci | |
2019/06/10 16:28:11 Using internal plugin for proxmox | |
2019/06/10 16:28:11 Using internal plugin for yandex | |
2019/06/10 16:28:11 Using internal plugin for amazon-ebs | |
2019/06/10 16:28:11 Using internal plugin for amazon-instance | |
2019/06/10 16:28:11 Using internal plugin for file | |
2019/06/10 16:28:11 Using internal plugin for hyperone | |
2019/06/10 16:28:11 Using internal plugin for oracle-classic | |
2019/06/10 16:28:11 Using internal plugin for parallels-iso | |
2019/06/10 16:28:11 Using internal plugin for triton | |
2019/06/10 16:28:11 Using internal plugin for alicloud-ecs | |
2019/06/10 16:28:11 Using internal plugin for amazon-ebssurrogate | |
2019/06/10 16:28:11 Using internal plugin for digitalocean | |
2019/06/10 16:28:11 Using internal plugin for docker | |
2019/06/10 16:28:11 Using internal plugin for lxc | |
2019/06/10 16:28:11 Using internal plugin for profitbricks | |
2019/06/10 16:28:11 Using internal plugin for amazon-chroot | |
2019/06/10 16:28:11 Using internal plugin for cloudstack | |
2019/06/10 16:28:11 Using internal plugin for hyperv-iso | |
2019/06/10 16:28:11 Using internal plugin for linode | |
2019/06/10 16:28:11 Using internal plugin for scaleway | |
2019/06/10 16:28:11 Using internal plugin for tencentcloud-cvm | |
2019/06/10 16:28:11 Using internal plugin for amazon-ebsvolume | |
2019/06/10 16:28:11 Using internal plugin for oneandone | |
2019/06/10 16:28:11 Using internal plugin for chef-client | |
2019/06/10 16:28:11 Using internal plugin for breakpoint | |
2019/06/10 16:28:11 Using internal plugin for chef-solo | |
2019/06/10 16:28:11 Using internal plugin for file | |
2019/06/10 16:28:11 Using internal plugin for salt-masterless | |
2019/06/10 16:28:11 Using internal plugin for shell-local | |
2019/06/10 16:28:11 Using internal plugin for sleep | |
2019/06/10 16:28:11 Using internal plugin for windows-restart | |
2019/06/10 16:28:11 Using internal plugin for ansible | |
2019/06/10 16:28:11 Using internal plugin for ansible-local | |
2019/06/10 16:28:11 Using internal plugin for inspec | |
2019/06/10 16:28:11 Using internal plugin for puppet-masterless | |
2019/06/10 16:28:11 Using internal plugin for puppet-server | |
2019/06/10 16:28:11 Using internal plugin for shell | |
2019/06/10 16:28:11 Using internal plugin for converge | |
2019/06/10 16:28:11 Using internal plugin for powershell | |
2019/06/10 16:28:11 Using internal plugin for windows-shell | |
2019/06/10 16:28:11 Using internal plugin for compress | |
2019/06/10 16:28:11 Using internal plugin for docker-import | |
2019/06/10 16:28:11 Using internal plugin for docker-save | |
2019/06/10 16:28:11 Using internal plugin for docker-tag | |
2019/06/10 16:28:11 Using internal plugin for googlecompute-export | |
2019/06/10 16:28:11 Using internal plugin for manifest | |
2019/06/10 16:28:11 Using internal plugin for alicloud-import | |
2019/06/10 16:28:11 Using internal plugin for artifice | |
2019/06/10 16:28:11 Using internal plugin for checksum | |
2019/06/10 16:28:11 Using internal plugin for digitalocean-import | |
2019/06/10 16:28:11 Using internal plugin for vsphere | |
2019/06/10 16:28:11 Using internal plugin for amazon-import | |
2019/06/10 16:28:11 Using internal plugin for shell-local | |
2019/06/10 16:28:11 Using internal plugin for googlecompute-import | |
2019/06/10 16:28:11 Using internal plugin for vagrant | |
2019/06/10 16:28:11 Using internal plugin for vagrant-cloud | |
2019/06/10 16:28:11 Using internal plugin for vsphere-template | |
2019/06/10 16:28:11 Using internal plugin for docker-push | |
2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[alicloud-ecs:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-alicloud-ecs amazon-chroot:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot amazon-ebs:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs amazon-ebssurrogate:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebssurrogate amazon-ebsvolume:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebsvolume amazon-instance:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance azure-arm:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm cloudstack:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-cloudstack digitalocean:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean docker:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker file:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file googlecompute:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute hcloud:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hcloud hyperone:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperone hyperv-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-iso hyperv-vmcx:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-vmcx linode:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-linode lxc:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxc lxd:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxd ncloud:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-ncloud null:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null oneandone:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oneandone openstack:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack oracle-classic:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-classic oracle-oci:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-oci parallels-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso parallels-pvm:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm profitbricks:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-profitbricks proxmox:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-proxmox qemu:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu scaleway:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-scaleway tencentcloud-cvm:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-tencentcloud-cvm triton:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-triton vagrant:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vagrant virtualbox-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso virtualbox-ovf:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf vmware-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso vmware-vmx:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx yandex:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-yandex] PostProcessors:map[alicloud-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-alicloud-import amazon-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import artifice:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice checksum:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-checksum compress:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress digitalocean-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-digitalocean-import docker-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import docker-push:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-save:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save docker-tag:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag googlecompute-export:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-export googlecompute-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-import manifest:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-manifest shell-local:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local vagrant:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant vagrant-cloud:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud vsphere:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere vsphere-template:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere-template] Provisioners:map[ansible:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible ansible-local:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local breakpoint:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-breakpoint chef-client:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client chef-solo:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo converge:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-converge file:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file goss:/Users/petermounce/.packer.d/plugins/packer-provisioner-goss inspec:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-inspec powershell:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell puppet-masterless:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless puppet-server:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server salt-masterless:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless shell:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell shell-local:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local sleep:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-sleep windows-restart:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart windows-shell:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell]} | |
2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 Loading builder: googlecompute | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-builder-googlecompute"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-builder-googlecompute"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin992525027 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: powershell | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-powershell"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin246863767 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: shell-local | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-shell-local"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-shell-local"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin196833851 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: shell-local | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-shell-local"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-shell-local"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin666385655 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: windows-restart | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-restart"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-windows-restart"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin745348027 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: shell-local | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-shell-local"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-shell-local"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin532605775 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: windows-restart | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-restart"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-windows-restart"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin490071571 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: powershell | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-powershell"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin310255975 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:11 Loading provisioner: powershell | |
2019/06/10 16:28:11 Plugin could not be found. Checking same directory as executable. | |
2019/06/10 16:28:11 Current exe path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Creating plugin client for path: /usr/local/bin/packer | |
2019/06/10 16:28:11 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"} | |
2019/06/10 16:28:11 Waiting for RPC address for: /usr/local/bin/packer | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [INFO] Packer version: 1.4.1 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer Target OS/Arch: darwin amd64 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Built with Go Version: go1.12.5 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Attempting to open config file: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 [WARN] Config file doesn't exist: /Users/petermounce/.packerconfig | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Setting cache directory: /Users/petermounce/src/ip/platform/packer/improbable.io/buildkite/packer_cache | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Detected home directory from env var: /Users/petermounce | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 args: []string{"packer-provisioner-powershell"} | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin minimum port: 10000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin maximum port: 25000 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Plugin address: unix /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-plugin317040667 | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Waiting for connection... | |
2019/06/10 16:28:11 packer: 2019/06/10 16:28:11 Serving a plugin connection... | |
2019/06/10 16:28:12 ui: [1;32mgooglecompute output will be in this color.[0m | |
2019/06/10 16:28:12 ui: | |
2019/06/10 16:28:12 Build debug mode: false | |
2019/06/10 16:28:12 Force build: false | |
2019/06/10 16:28:12 On error: abort | |
2019/06/10 16:28:12 Preparing build: googlecompute | |
2019/06/10 16:28:12 Waiting on builds to complete... | |
2019/06/10 16:28:12 Starting build run: googlecompute | |
2019/06/10 16:28:12 Running builder: googlecompute | |
2019/06/10 16:28:12 [INFO] (telemetry) Starting builder googlecompute | |
2019/06/10 16:28:12 packer: 2019/06/10 16:28:12 [INFO] Requesting Google token via GCE API Default Client Token Source... | |
2019/06/10 16:28:12 packer: 2019/06/10 16:28:12 [INFO] Instantiating GCE client... | |
2019/06/10 16:28:12 ui: [1;32m==> googlecompute: Checking image does not exist...[0m | |
2019/06/10 16:28:12 ui: [1;32m==> googlecompute: Using existing SSH private key[0m | |
2019/06/10 16:28:16 ui: [1;32m==> googlecompute: Using image: windows-server-2016-dc-v20190514[0m | |
2019/06/10 16:28:16 ui: [1;32m==> googlecompute: Creating instance...[0m | |
2019/06/10 16:28:16 ui: [0;32m googlecompute: Loading zone: europe-west1-d[0m | |
2019/06/10 16:28:16 ui: [0;32m googlecompute: Loading machine type: n1-standard-2[0m | |
2019/06/10 16:28:17 ui: [0;32m googlecompute: Requesting instance creation...[0m | |
2019/06/10 16:28:18 ui: [0;32m googlecompute: Waiting for creation operation to complete...[0m | |
2019/06/10 16:28:19 packer: 2019/06/10 16:28:19 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:21 packer: 2019/06/10 16:28:21 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:23 packer: 2019/06/10 16:28:23 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:26 packer: 2019/06/10 16:28:26 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:28 packer: 2019/06/10 16:28:28 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:30 packer: 2019/06/10 16:28:30 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:33 packer: 2019/06/10 16:28:33 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:35 packer: 2019/06/10 16:28:35 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:37 packer: 2019/06/10 16:28:37 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:40 packer: 2019/06/10 16:28:40 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:42 packer: 2019/06/10 16:28:42 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:44 packer: 2019/06/10 16:28:44 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:47 packer: 2019/06/10 16:28:47 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:49 packer: 2019/06/10 16:28:49 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:51 packer: 2019/06/10 16:28:51 Retryable error: retrying for state DONE, got RUNNING | |
2019/06/10 16:28:54 ui: [0;32m googlecompute: Instance has been created![0m | |
2019/06/10 16:28:54 ui: [1;32m==> googlecompute: Waiting for the instance to become running...[0m | |
2019/06/10 16:28:54 ui: [0;32m googlecompute: IP: 104.199.90.181[0m | |
2019/06/10 16:28:54 ui: [1;32m==> googlecompute: Using ssh communicator to connect: 104.199.90.181[0m | |
2019/06/10 16:28:54 packer: 2019/06/10 16:28:54 [INFO] Waiting for SSH, up to timeout: 5m0s | |
2019/06/10 16:28:54 ui: [1;32m==> googlecompute: Waiting for SSH to become available...[0m | |
2019/06/10 16:28:55 packer: 2019/06/10 16:28:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 104.199.90.181:22: connect: connection refused | |
2019/06/10 16:29:15 packer: 2019/06/10 16:29:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 104.199.90.181:22: i/o timeout | |
2019/06/10 16:29:35 packer: 2019/06/10 16:29:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 104.199.90.181:22: i/o timeout | |
2019/06/10 16:29:40 packer: 2019/06/10 16:29:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 104.199.90.181:22: connect: connection refused | |
2019/06/10 16:30:00 packer: 2019/06/10 16:30:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 104.199.90.181:22: i/o timeout | |
2019/06/10 16:30:20 packer: 2019/06/10 16:30:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 104.199.90.181:22: i/o timeout | |
2019/06/10 16:30:40 packer: 2019/06/10 16:30:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 104.199.90.181:22: i/o timeout | |
2019/06/10 16:30:49 packer: 2019/06/10 16:30:49 [INFO] Attempting SSH connection to 104.199.90.181:22... | |
2019/06/10 16:30:49 packer: 2019/06/10 16:30:49 [DEBUG] Config to &ssh.Config{SSHConfig:(*ssh.ClientConfig)(0xc00026e5b0), Connection:(func() (net.Conn, error))(0x1d39bb0), Pty:false, DisableAgentForwarding:false, HandshakeTimeout:0, UseSftp:false, KeepAliveInterval:5000000000, Timeout:0}... | |
2019/06/10 16:30:49 packer: 2019/06/10 16:30:49 [DEBUG] reconnecting to TCP connection for SSH | |
2019/06/10 16:30:49 packer: 2019/06/10 16:30:49 [DEBUG] handshaking with SSH | |
2019/06/10 16:30:50 packer: 2019/06/10 16:30:50 [DEBUG] handshake complete! | |
2019/06/10 16:30:50 packer: 2019/06/10 16:30:50 [DEBUG] Opening new ssh session | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 [ERROR] RequestAgentForwarding: &errors.errorString{s:"forwarding request denied"} | |
2019/06/10 16:30:51 ui: [1;32m==> googlecompute: Connected to SSH![0m | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Running the provision hook | |
2019/06/10 16:30:51 [INFO] (telemetry) Starting provisioner powershell | |
2019/06/10 16:30:51 ui: [1;32m==> googlecompute: Provisioning with Powershell...[0m | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: Get-GceMetadata -Path instance/attributes/imp-bootstrap-base64 | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: Get-GceMetadata -Path instance/attributes/imp-public-key-base64 | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: net user packer_user | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: net localgroup administrators | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: ls c:/users | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: test-path c:/users/packer_user/.ssh/authorized_keys | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: cat c:/users/packer_user/.ssh/authorized_keys | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: echo "c3NoLXJzYSBBQUFBQjNOemFDMXljMkVBQUFBREFRQUJBQUFCQVFEbDVVVXBkeHVudXFJekxJS2pYbENqa0VEbzVSNTc3OHVyUmoyMzRMNnNiQ0d6d1NIQSsxSjFEQ1d3ZCtCRTFDQUh4bEYzSVJCbW1UZ2RGSXNYVm1vWVdFSit4OGx3aVpwWFJnYWFpdU56Y2kyOXAzK0dmdEhyUWVYVkNGUWxab2JTdDQrcjBYM3EwR3djUFVwZDU2Vmc1Z2lxR29ITnhCZ1JaNk5FUk9xQmU3czFjRzlsQnFQVmFIc014V09UYlB3WkxtTzc2UGhYQ0ZHcnhpUDJnWHY4TzViK1Bwb0dIdlJxT25FT2dZaEpqajFXbng2Z202SjE3VGlLTE45RmNBbkVKckxJVmdqcDQvWlE3VUx2MmtvRlM5MWtqNkRMWmRqcUk0bWZvVVhOalkzUzBCbEJsaVNNakVvajhCZjdSenhWbGphK21uOTVNQ3oraUhPUENBdUwgcGV0ZXJtb3VuY2VAcGV0ZXJtb3VuY2UtbWFjLWMwMnhwMHA3amdoNi5jb3JwLmltcHJvYmFibGUuaW8K" | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: Get-GceMetadata -Path instance/attributes/imp-public-key-base64 | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: get-service sshd -detailed | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Found command: cat c:/programdata/ssh/sshd_config | |
2019/06/10 16:30:51 ui: [1;32m==> googlecompute: Provisioning with powershell script: /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/powershell-provisioner562594826[0m | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Opening /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/powershell-provisioner562594826 for reading | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 Uploading env vars to c:/Windows/Temp/packer-ps-env-vars-5cfe770c-d115-1d84-b442-9334f60dc058.ps1 | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 [INFO] 82 bytes written for 'uploadData' | |
2019/06/10 16:30:51 [INFO] 82 bytes written for 'uploadData' | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 [DEBUG] Opening new ssh session | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 [DEBUG] Starting remote scp process: scp -vt c:/Windows/Temp | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 [DEBUG] Started SCP session, beginning transfers... | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 [DEBUG] Copying input data into temporary file so we can read the length | |
2019/06/10 16:30:51 packer: 2019/06/10 16:30:51 [DEBUG] scp: Uploading packer-ps-env-vars-5cfe770c-d115-1d84-b442-9334f60dc058.ps1: perms=C0644 size=82 | |
2019/06/10 16:30:56 packer: 2019/06/10 16:30:56 [DEBUG] SCP session complete, closing stdin pipe. | |
2019/06/10 16:30:56 packer: 2019/06/10 16:30:56 [DEBUG] Waiting for SSH session to complete. | |
2019/06/10 16:30:57 packer: 2019/06/10 16:30:57 [DEBUG] scp stderr (length 76): Sink: C0644 82 packer-ps-env-vars-5cfe770c-d115-1d84-b442-9334f60dc058.ps1 | |
2019/06/10 16:30:57 packer: 2019/06/10 16:30:57 [DEBUG] Opening new ssh session | |
2019/06/10 16:30:57 packer: 2019/06/10 16:30:57 [INFO] 1010 bytes written for 'uploadData' | |
2019/06/10 16:30:57 [INFO] 1010 bytes written for 'uploadData' | |
2019/06/10 16:30:57 packer: 2019/06/10 16:30:57 [DEBUG] Starting remote scp process: scp -vt c:/Windows/Temp | |
2019/06/10 16:30:57 packer: 2019/06/10 16:30:57 [DEBUG] Started SCP session, beginning transfers... | |
2019/06/10 16:30:57 packer: 2019/06/10 16:30:57 [DEBUG] Copying input data into temporary file so we can read the length | |
2019/06/10 16:30:57 packer: 2019/06/10 16:30:57 [DEBUG] scp: Uploading script-5cfe770c-fc2b-b999-99e3-23e550ba6ace.ps1: perms=C0644 size=1010 | |
2019/06/10 16:31:01 packer: 2019/06/10 16:31:01 [DEBUG] SCP session complete, closing stdin pipe. | |
2019/06/10 16:31:01 packer: 2019/06/10 16:31:01 [DEBUG] Waiting for SSH session to complete. | |
2019/06/10 16:31:01 packer: 2019/06/10 16:31:01 [DEBUG] scp stderr (length 66): Sink: C0644 1010 script-5cfe770c-fc2b-b999-99e3-23e550ba6ace.ps1 | |
2019/06/10 16:31:01 packer: 2019/06/10 16:31:01 [DEBUG] Opening new ssh session | |
2019/06/10 16:31:01 packer: 2019/06/10 16:31:01 [DEBUG] starting remote command: powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){set-variable -name variable:global:ProgressPreference -value 'SilentlyContinue'};. c:/Windows/Temp/packer-ps-env-vars-5cfe770c-d115-1d84-b442-9334f60dc058.ps1; &'c:/Windows/Temp/script-5cfe770c-fc2b-b999-99e3-23e550ba6ace.ps1'; exit $LastExitCode }" | |
2019/06/10 16:31:17 ui: [0;32m googlecompute: cGFyYW0oCiAgICBbc3RyaW5nXSAkdXNlcm5hbWUgPSAidHdlZXRlciIsCiAgICBbc3RyaW5nXSAkb3Blbl9zc2hfdmVyc2lvbiA9ICJ2Ny45LjAuMHAxLUJldGEiCikKJEVycm9yQWN0aW9uUHJlZmVyZW5jZSA9ICdTdG9wJzsgIyBzdG9wIG9uIGFsbCBlcnJvcnMKCiMgbWFrZSB0aGUgdXNlcgokQ291bnQgPSBHZXQtUmFuZG9tIC1taW4gMjQgLW1heCAzMgokVGVtcFBhc3N3b3JkID0gLWpvaW4gKCg2NS4uOTApICsgKDk3Li4xMjIpICsgKDQ4Li41NykgfCBHZXQtUmFuZG9tIC1Db3VudCAkQ291bnQgfCAlIHtbY2hhcl0kX30pCk5ldy1Mb2NhbFVzZXIgLU5hbWUgJHVzZXJuYW1lIC1QYXNzd29yZE5ldmVyRXhwaXJlcyAtUGFzc3dvcmQgKCRUZW1wUGFzc3dvcmQgfCBDb252ZXJ0VG8tU2VjdXJlU3RyaW5nIC1Bc1BsYWluVGV4dCAtRm9yY2UpIHwgb3V0LW51bGwKQWRkLUxvY2FsR3JvdXBNZW1iZXIgLUdyb3VwICJBZG1pbmlzdHJhdG9ycyIgLU1lbWJlciAkdXNlcm5hbWUgfCBvdXQtbnVsbAoKIyBtYWtlIHRoZSB1c2VyIHByb2ZpbGUKI2Z1bmN0aW9uIHRvIHJlZ2lzdGVyIGEgbmF0aXZlIG1ldGhvZApmdW5jdGlvbiBSZWdpc3Rlci1OYXRpdmVNZXRob2QKewogICAgW0NtZGxldEJpbmRpbmcoKV0KICAgIFtBbGlhcygpXQogICAgW091dHB1dFR5cGUoW2ludF0pXQogICAgUGFyYW0KICAgICgKICAgICAgICAjIFBhcmFtMSBoZWxwIGRlc2NyaXB0aW9uCiAgICAgICAgW1BhcmFtZXRlcihNYW5kYXRvcnk9JHRydWUsCiAgICAgICAgICAgICAgICAgICBWYWx1ZUZyb21QaXBlbGluZUJ5UHJvcGVydHlOYW1lPSR0cnVlLAogICAgICAgICAgICAgICAgICAgUG9zaXRpb249MCldCiAgICAgICAgW3N0cmluZ10kZGxsLAoKICAgICAgICAgIyBQYXJhbTIgaGVscCBkZXNjcmlwdGlvbgogICAgICAgIFtQYXJhbWV0ZXIoTWFuZGF0b3J5PSR0cnVlLAogICAgICAgICAgICAgICAgICAgVmFsdWVGcm9tUGlwZWxpbmVCeVByb3BlcnR5TmFtZT0kdHJ1ZSwKICAgICAgICAgICAgICAgICAgIFBvc2l0aW9uPTEpXQogICAgICAgIFtzdHJpbmddCiAgICAgICAgJG1ldGhvZFNpZ25hdHVyZQogICAgKQoKICAgICAkc2NyaXB0Om5hdGl2ZU1ldGhvZHMgKz0gW1BTQ3VzdG9tT2JqZWN0XUB7IERsbCA9ICRkbGw7IFNpZ25hdHVyZSA9ICRtZXRob2RTaWduYXR1cmU7IH0KfQpmdW5jdGlvbiBHZXQtV2luMzJMYXN0RXJyb3IKewogICAgW0NtZGxldEJpbmRpbmcoKV0KICAgIFtBbGlhcygpXQogICAgW091dHB1dFR5cGUoW2ludF0pXQogICAgUGFyYW0oJHR5cGVOYW1lID0gJ0xhc3RFcnJvcicpCiBpZiAoLW5vdCAoW1N5c3RlbS5NYW5hZ2VtZW50LkF1dG9tYXRpb24uUFNUeXBlTmFtZV0kdHlwZU5hbWUpLlR5cGUpCiAgICB7CiAgICAkbGFzdGVycm9yQ29kZSA9ICRzY3JpcHQ6bGFzdGVycm9yIHwgRm9yRWFjaC1PYmplY3R7CiAgICAgICAgJ1tEbGxJbXBvcnQoImtlcm5lbDMyLmRsbCIsIFNldExhc3RFcnJvciA9IHRydWUpXQogICAgICAgICBwdWJsaWMgc3RhdGljIGV4dGVybiB1aW50IEdldExhc3RFcnJvcigpOycKICAgIH0KICAgICAgICBBZGQtVHlwZSBAIgogICAgICAgIHVzaW5nIFN5c3RlbTsKICAgICAgICB1c2luZyBTeXN0ZW0uVGV4dDsKICAgICAgICB1c2luZyBTeXN0ZW0uUnVudGltZS5JbnRlcm9wU2VydmljZXM7CiAgICAgICAgcHVibGljIHN0YXRpYyBjbGFzcyAkdHlwZU5hbWUgewogICAgICAgICAgICAkbGFzdGVycm9yQ29kZQogICAgICAgIH0KIkAKICAgIH0KfQojZnVuY3Rpb24gdG8gYWRkIG5hdGl2ZSBtZXRob2QKZnVuY3Rpb24gQWRkLU5hdGl2ZU1ldGhvZHMKewogICAgW0NtZGxldEJpbmRpbmcoKV0KICAgIFtBbGlhcygpXQogICAgW091dHB1dFR5cGUoW2ludF0pXQogICAgUGFyYW0oJHR5cGVOYW1lID0gJ05hdGl2ZU1ldGhvZHMnKQoKICAgICAkbmF0aXZlTWV0aG9kc0NvZGUgPSAkc2NyaXB0Om5hdGl2ZU1ldGhvZHMgfCBGb3JFYWNoLU9iamVjdCB7ICIKICAgICAgICBbRGxsSW1wb3J0KGAiJCgkXy5EbGwpYCIpXQogICAgICAgIHB1YmxpYyBzdGF0aWMgZXh0ZXJuICQoJF8uU2lnbmF0dXJlKTsKICAgICIgfQoKICAgICBBZGQtVHlwZSBAIgogICAgICAgIHVzaW5nIFN5c3RlbTsKICAgICAgICB1c2luZyBTeXN0ZW0uVGV4dDsKICAgICAgICB1c2luZyBTeXN0ZW0uUnVudGltZS5JbnRlcm9wU2VydmljZXM7CiAgICAgICAgcHVibGljIHN0YXRpYyBjbGFzcyAkdHlwZU5hbWUgewogICAgICAgICAgICAkbmF0aXZlTWV0aG9kc0NvZGUKICAgICAgICB9CiJACn0KCiRtZXRob2ROYW1lID0gJ1VzZXJFbnZDUCcKJHNjcmlwdDpuYXRpdmVNZXRob2RzID0gQCgpOwoKUmVnaXN0ZXItTmF0aXZlTWV0aG9kICJ1c2VyZW52LmRsbCIgImludCBDcmVhdGVQcm9maWxlKFtNYXJzaGFsQXMoVW5tYW5hZ2VkVHlwZS5MUFdTdHIpXSBzdHJpbmcgcHN6VXNlclNpZCxgCiAgW01hcnNoYWxBcyhVbm1hbmFnZWRUeXBlLkxQV1N0cildIHN0cmluZyBwc3pVc2VyTmFtZSxgCiAgW091dF1bTWFyc2hhbEFzKFVubWFuYWdlZFR5cGUuTFBXU3RyKV0gU3RyaW5nQnVpbGRlciBwc3pQcm9maWxlUGF0aCwgdWludCBjY2hQcm9maWxlUGF0aCkiOwoKQWRkLU5hdGl2ZU1ldGhvZHMgLXR5cGVOYW1lICRNZXRob2ROYW1lOwoKJGxvY2FsVXNlciA9IE5ldy1PYmplY3QgU3lzdGVtLlNlY3VyaXR5LlByaW5jaXBhbC5OVEFjY291bnQoIiR1c2VybmFtZSIpOwokdXNlclNJRCA9ICRsb2NhbFVzZXIuVHJhbnNsYXRlKFtTeXN0ZW0uU2VjdXJpdHkuUHJpbmNpcGFsLlNlY3VyaXR5SWRlbnRpZmllcl0pOwokc2IgPSBuZXctb2JqZWN0IFN5c3RlbS5UZXh0LlN0cmluZ0J1aWxkZXIoMjYwKTsKJHBhdGhMZW4gPSAkc2IuQ2FwYWNpdHk7CgpXcml0ZS1WZXJib3NlICJDcmVhdGluZyB1c2VyIHByb2ZpbGUgZm9yICR1c2VybmFtZSI7CnRyeQp7CiAgICBbVXNlckVudkNQXTo6Q3JlYXRlUHJvZmlsZSgkdXNlclNJRC5WYWx1ZSwgJHVzZXJuYW1lLCAkc2IsICRwYXRoTGVuKSB8IE91dC1OdWxsOwp9CmNhdGNoCnsKICAgIFdyaXRlLUVycm9yICRfLkV4Y2VwdGlvbi5NZXNzYWdlOwogICAgYnJlYWs7Cn0KCk5ldy1JdGVtICJjOi91c2Vycy8kdXNlcm5hbWUvLnNzaCIgLXR5cGUgRGlyZWN0b3J5CiRwdWJsaWNfa2V5X2Jhc2U2NCA9IGdldC1nY2VtZXRhZGF0YSAtcGF0aCAiaW5zdGFuY2UvYXR0cmlidXRlcy9pbXAtcHVibGljLWtleS1iYXNlNjQiCiRwdWJsaWNfa2V5ID0gW1N5c3RlbS5UZXh0LkVuY29kaW5nXTo6VVRGOC5HZXRTdHJpbmcoW1N5c3RlbS5Db252ZXJ0XTo6RnJvbUJhc2U2NFN0cmluZygkcHVibGljX2tleV9iYXNlNjQpKQpTZXQtQ29udGVudCAtUGF0aCAiYzovdXNlcnMvJHVzZXJuYW1lLy5zc2gvYXV0aG9yaXplZF9rZXlzIiAtVmFsdWUgIiRwdWJsaWNfa2V5IgoKIyBJbnN0YWxsIG9wZW5zc2gKIyBodHRwczovL2dpdGh1Yi5jb20vUG93ZXJTaGVsbC9XaW4zMi1PcGVuU1NIL3dpa2kvSW5zdGFsbC1XaW4zMi1PcGVuU1NICiR1cmwgPSAiaHR0cHM6Ly9naXRodWIuY29tL1Bvd2VyU2hlbGwvV2luMzItT3BlblNTSC9yZWxlYXNlcy9kb3dubG9hZC8kKCRvcGVuX3NzaF92ZXJzaW9uKS9PcGVuU1NILVdpbjY0LnppcCIKJG91dHB1dCA9ICIkKCRlbnY6VEVNUCkvT3BlblNTSC1XaW42NC56aXAiCgojIGdpdGh1YiB3ZW50IFRMUyAxLjIgb25seSBmcm9tIDIwMTgKW1N5c3RlbS5OZXQuU2VydmljZVBvaW50TWFuYWdlcl06OlNlY3VyaXR5UHJvdG9jb2wgPSBbU3lzdGVtLk5ldC5TZWN1cml0eVByb3RvY29sVHlwZV06OlRsczEyOwooTmV3LU9iamVjdCBTeXN0ZW0uTmV0LldlYkNsaWVudCkuRG93bmxvYWRGaWxlKCR1cmwsICRvdXRwdXQpCgpFeHBhbmQtQXJjaGl2ZSAtUGF0aCAkb3V0cHV0IC1EZXN0aW5hdGlvblBhdGggIiQoJGVudjpQUk9HUkFNRklMRVMpIgoKLiAiJCgkZW52OlBST0dSQU1GSUxFUykvT3BlblNTSC1XaW42NC9pbnN0YWxsLXNzaGQucHMxIgoKIyBTZXQgZGVmYXVsdCBzaGVsbCBmb3Igc3NoZCBjb25uZWN0aW9ucyB0byBwb3dlcnNoZWxsIHRvIGF2b2lkIGxlZ2FjeSBjbWQgbm9uc2Vuc2UKIyBodHRwczovL2dpdGh1Yi5jb20vUG93ZXJTaGVsbC9XaW4zMi1PcGVuU1NIL3dpa2kvRGVmYXVsdFNoZWxsCltTeXN0ZW0uRW52aXJvbm1lbnRdOjpTZXRFbnZpcm9ubWVudFZhcmlhYmxlKCJQQVRIIiwgIiQoJGVudjpQQVRIKTtjOlxQcm9ncmFtIEZpbGVzXE9wZW5TU0gtV2luNjQiLCBbU3lzdGVtLkVudmlyb25tZW50VmFyaWFibGVUYXJnZXRdOjpNYWNoaW5lKQoKTmV3LUl0ZW0gLXBhdGggIkhLTE06XFNPRlRXQVJFXE9wZW5TU0giIC1mb3JjZQpOZXctSXRlbVByb3BlcnR5IC1QYXRoICJIS0xNOlxTT0ZUV0FSRVxPcGVuU1NIIiAtTmFtZSBEZWZhdWx0U2hlbGwgLVZhbHVlICJDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBccG93ZXJzaGVsbC5leGUiIC1Qcm9wZXJ0eVR5cGUgU3RyaW5nIC1Gb3JjZQpOZXctSXRlbVByb3BlcnR5IC1QYXRoICJIS0xNOlxTT0ZUV0FSRVxPcGVuU1NIIiAtTmFtZSBEZWZhdWx0U2hlbGxDb21tYW5kT3B0aW9uIC1WYWx1ZSAiL2MiIC1Qcm9wZXJ0eVR5cGUgU3RyaW5nIC1Gb3JjZQoKIyBBZGp1c3Qgc3NoZF9jb25maWcgdG8KIyAqIGFsbG93IHB1YmxpYyBrZXkgYXV0aGVudGljYXRpb24KIyAqIHJlbW92ZSAyIGxpbmVzIHRoYXQgcHJldmVudCBwdWJrZXkgYXV0aGVudGljYXRpb24gd29ya2luZwpOZXctSXRlbSAiJCgkZW52OlBST0dSQU1EQVRBKS9zc2giIC1UeXBlIERpcmVjdG9yeSAtRm9yY2UKJHNzaGRfY29uZmlnX3BhdGggPSAiJCgkZW52OlBST0dSQU1EQVRBKS9zc2gvc3NoZF9jb25maWciCiRzc2hkX2NvbmZpZ19iYXNlNjQgPSBnZXQtZ2NlbWV0YWRhdGEgLXBhdGggImluc3RhbmNlL2F0dHJpYnV0ZXMvaW1wLXNzaGQtY29uZmlnLWJhc2U2NCIKJHNzaGRfY29uZmlnX3RleHQgPSBbU3lzdGVtLlRleHQuRW5jb2RpbmddOjpVVEY4LkdldFN0cmluZyhbU3lzdGVtLkNvbnZlcnRdOjpGcm9tQmFzZTY0U3RyaW5nKCRzc2hkX2NvbmZpZ19iYXNlNjQpKQpTZXQtQ29udGVudCAtUGF0aCAiJCgkc3NoZF9jb25maWdfcGF0aCkiIC1WYWx1ZSAiJCgkc3NoZF9jb25maWdfdGV4dCkiCgpSZXN0YXJ0LVNlcnZpY2Ugc3NoZApTZXQtU2VydmljZSBzc2hkIC1TdGFydHVwVHlwZSBBdXRvbWF0aWMKCiMgbGFzdGx5LCBvcGVuIHVwIHRoZSBmaXJld2FsbCBwb3J0Ck5ldy1OZXRGaXJld2FsbFJ1bGUgLU5hbWUgc3NoZCAtRGlzcGxheU5hbWUgJ09wZW5TU0ggU2VydmVyIChzc2hkKScgLUVuYWJsZWQgVHJ1ZSAtRGlyZWN0aW9uIEluYm91bmQgLVByb3RvY29sIFRDUCAtQWN0aW9uIEFsbG93IC1Mb2NhbFBvcnQgMjIK[0m | |
2019/06/10 16:31:18 ui: [0;32m googlecompute: c3NoLXJzYSBBQUFBQjNOemFDMXljMkVBQUFBREFRQUJBQUFCQVFEbDVVVXBkeHVudXFJekxJS2pYbENqa0VEbzVSNTc3OHVyUmoyMzRMNnNiQ0d6d1NIQSsxSjFEQ1d3ZCtCRTFDQUh4bEYzSVJCbW1UZ2RGSXNYVm1vWVdFSit4OGx3aVpwWFJnYWFpdU56Y2kyOXAzK0dmdEhyUWVYVkNGUWxab2JTdDQrcjBYM3EwR3djUFVwZDU2Vmc1Z2lxR29ITnhCZ1JaNk5FUk9xQmU3czFjRzlsQnFQVmFIc014V09UYlB3WkxtTzc2UGhYQ0ZHcnhpUDJnWHY4TzViK1Bwb0dIdlJxT25FT2dZaEpqajFXbng2Z202SjE3VGlLTE45RmNBbkVKckxJVmdqcDQvWlE3VUx2MmtvRlM5MWtqNkRMWmRqcUk0bWZvVVhOalkzUzBCbEJsaVNNakVvajhCZjdSenhWbGphK21uOTVNQ3oraUhPUENBdUwgcGV0ZXJtb3VuY2VAcGV0ZXJtb3VuY2UtbWFjLWMwMnhwMHA3amdoNi5jb3JwLmltcHJvYmFibGUuaW8K[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: User name packer_user[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Full Name[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Comment[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: User's comment[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Country/region code 000 (System Default)[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Account active Yes[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Account expires Never[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Password last set 6/10/2019 3:30:35 PM[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Password expires Never[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Password changeable 6/10/2019 3:30:35 PM[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Password required No[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: User may change password Yes[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Workstations allowed All[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Logon script[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: User profile[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Home directory[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Last logon Never[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Logon hours allowed All[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Local Group Memberships *Administrators[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Global Group memberships *None[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: The command completed successfully.[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Alias name administrators[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Comment Administrators have complete and unrestricted access to the computer/domain[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Members[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: -------------------------------------------------------------------------------[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: Administrator[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: packer_user[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute: The command completed successfully.[0m | |
2019/06/10 16:31:19 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: Directory: C:\users[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: Mode LastWriteTime Length Name[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: ---- ------------- ------ ----[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: d----- 6/10/2019 3:30 PM packer_user[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: d-r--- 11/21/2016 8:17 AM Public[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: True[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDl5UUpdxunuqIzLIKjXlCjkEDo5R5778urRj234L6sbCGzwSHA+1J1DCWwd+BE1CAHxlF3IRBmmTgdFIsXVmoYWEJ+x8lwiZpXRgaaiuNzci29p3+GftHrQeXVCFQlZobSt4+r0X3q0GwcPUpd56Vg5giqGoHNxBgRZ6NEROqBe7s1cG9lBqPVaHsMxWOTbPwZLmO76PhXCFGrxiP2gXv8O5b+PpoGHvRqOnEOgYhJjj1Wnx6gm6J17TiKLN9FcAnEJrLIVgjp4/ZQ7ULv2koFS91kj6DLZdjqI4mfoUXNjY3S0BlBliSMjEoj8Bf7RzxVlja+mn95MCz+iHOPCAuL [email protected][0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: c3NoLXJzYSBBQUFBQjNOemFDMXljMkVBQUFBREFRQUJBQUFCQVFEbDVVVXBkeHVudXFJekxJS2pYbENqa0VEbzVSNTc3OHVyUmoyMzRMNnNiQ0d6d1NIQSsxSjFEQ1d3ZCtCRTFDQUh4bEYzSVJCbW1UZ2RGSXNYVm1vWVdFSit4OGx3aVpwWFJnYWFpdU56Y2kyOXAzK0dmdEhyUWVYVkNGUWxab2JTdDQrcjBYM3EwR3djUFVwZDU2Vmc1Z2lxR29ITnhCZ1JaNk5FUk9xQmU3czFjRzlsQnFQVmFIc014V09UYlB3WkxtTzc2UGhYQ0ZHcnhpUDJnWHY4TzViK1Bwb0dIdlJxT25FT2dZaEpqajFXbng2Z202SjE3VGlLTE45RmNBbkVKckxJVmdqcDQvWlE3VUx2MmtvRlM5MWtqNkRMWmRqcUk0bWZvVVhOalkzUzBCbEJsaVNNakVvajhCZjdSenhWbGphK21uOTVNQ3oraUhPUENBdUwgcGV0ZXJtb3VuY2VAcGV0ZXJtb3VuY2UtbWFjLWMwMnhwMHA3amdoNi5jb3JwLmltcHJvYmFibGUuaW8K[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: c3NoLXJzYSBBQUFBQjNOemFDMXljMkVBQUFBREFRQUJBQUFCQVFEbDVVVXBkeHVudXFJekxJS2pYbENqa0VEbzVSNTc3OHVyUmoyMzRMNnNiQ0d6d1NIQSsxSjFEQ1d3ZCtCRTFDQUh4bEYzSVJCbW1UZ2RGSXNYVm1vWVdFSit4OGx3aVpwWFJnYWFpdU56Y2kyOXAzK0dmdEhyUWVYVkNGUWxab2JTdDQrcjBYM3EwR3djUFVwZDU2Vmc1Z2lxR29ITnhCZ1JaNk5FUk9xQmU3czFjRzlsQnFQVmFIc014V09UYlB3WkxtTzc2UGhYQ0ZHcnhpUDJnWHY4TzViK1Bwb0dIdlJxT25FT2dZaEpqajFXbng2Z202SjE3VGlLTE45RmNBbkVKckxJVmdqcDQvWlE3VUx2MmtvRlM5MWtqNkRMWmRqcUk0bWZvVVhOalkzUzBCbEJsaVNNakVvajhCZjdSenhWbGphK21uOTVNQ3oraUhPUENBdUwgcGV0ZXJtb3VuY2VAcGV0ZXJtb3VuY2UtbWFjLWMwMnhwMHA3amdoNi5jb3JwLmltcHJvYmFibGUuaW8K[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: Port 22[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: Get-Service : A parameter cannot be found that matches parameter name[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: # Logging[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #SyslogFacility AUTH[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #LogLevel INFO[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: 'detailed'.[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: At C:\Windows\Temp\script-5cfe770c-fc2b-b999-99e3-23e550ba6ace.ps1:10 char:18[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: # Authentication:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #LoginGraceTime 2m[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: + get-service sshd -detailed[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: + ~~~~~~~~~[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: + CategoryInfo : InvalidArgument: (:) [Get-Service], ParameterBin[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: dingException[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Comm[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #PermitRootLogin prohibit-password[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #StrictModes yes[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #MaxAuthTries 6[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #MaxSessions 10[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: PubkeyAuthentication yes[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute: ands.GetServiceCommand[0m | |
2019/06/10 16:31:20 ui error: [1;31m==> googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: # but this is overridden so installations will only check .ssh/authorized_keys[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: AuthorizedKeysFile .ssh/authorized_keys[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: # To disable tunneled clear text passwords, change to no here![0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #PasswordAuthentication yes[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: #PermitEmptyPasswords no[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: TCPKeepAlive yes[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: # override default of no subsystems[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: Subsystem sftp sftp-server.exe[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute:[0m | |
2019/06/10 16:31:20 packer: 2019/06/10 16:31:20 [INFO] RPC endpoint: Communicator ended with: 0 | |
2019/06/10 16:31:20 [INFO] 434 bytes written for 'stderr' | |
2019/06/10 16:31:20 [INFO] 11419 bytes written for 'stdout' | |
2019/06/10 16:31:20 [INFO] RPC client: Communicator ended with: 0 | |
2019/06/10 16:31:20 [INFO] RPC endpoint: Communicator ended with: 0 | |
2019/06/10 16:31:20 packer: 2019/06/10 16:31:20 [INFO] 434 bytes written for 'stderr' | |
2019/06/10 16:31:20 packer: 2019/06/10 16:31:20 [INFO] 11419 bytes written for 'stdout' | |
2019/06/10 16:31:20 packer: 2019/06/10 16:31:20 [INFO] RPC client: Communicator ended with: 0 | |
2019/06/10 16:31:20 [INFO] (telemetry) ending powershell | |
2019/06/10 16:31:20 [INFO] (telemetry) Starting provisioner shell-local | |
2019/06/10 16:31:20 packer: 2019/06/10 16:31:20 [INFO] (shell-local): Prepending inline script with #!/bin/sh -e | |
2019/06/10 16:31:20 ui: [1;32m==> googlecompute: Running local shell script: /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-shell889499230[0m | |
2019/06/10 16:31:20 packer: 2019/06/10 16:31:20 [INFO] (shell-local): starting local command: /bin/sh -c PACKER_BUILDER_TYPE='googlecompute' PACKER_BUILD_NAME='googlecompute' /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-shell889499230 | |
2019/06/10 16:31:20 packer: 2019/06/10 16:31:20 [INFO] (shell-local communicator): Executing local shell command [/bin/sh -c PACKER_BUILDER_TYPE='googlecompute' PACKER_BUILD_NAME='googlecompute' /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-shell889499230] | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: ~/src/ip/platform/packer/improbable.io/buildkite ~/src/ip/platform[0m | |
2019/06/10 16:31:20 ui: [0;32m googlecompute: [34mmake_windows_transient_inventory: Looking up IP of target...[0m | |
2019/06/10 16:31:23 ui: [0;32m googlecompute: [0m[34mmake_windows_transient_inventory: Instance name: packer-petermounce-5cfe770c-3407-de7b-97f8-30d4532883f9[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: Written ssh config successfully.[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: Host 104.199.90.181[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: Compression yes[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ForwardAgent yes[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: IdentitiesOnly yes[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: Protocol 2[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ServerAliveCountMax 30[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ServerAliveInterval 60[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: StrictHostKeyChecking no[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: UserKnownHostsFile /dev/null[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: VisualHostKey yes[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: Written ansible/inventory/transient/v3-1560180484-545258d8697b5924---m-u-z.yml successfully.[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: Contents: ---[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: all:[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: hosts:[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: 104.199.90.181[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: vars:[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ansible_connection: ssh[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ansible_shell_type: powershell[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ansible_ssh_private_key_file: "./private_key"[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ansible_user: packer_user[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ansible_host_key_checking: false[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ansible_pipelining: false # conflicts with 'become', see ansible docs[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m[32mmake_windows_transient_inventory: ansible_ssh_extra_args: -F "/var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/tmp.teJkTxMk"[0m | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [0m~/src/ip/platform[0m | |
2019/06/10 16:31:24 [INFO] (telemetry) ending shell-local | |
2019/06/10 16:31:24 [INFO] (telemetry) Starting provisioner shell-local | |
2019/06/10 16:31:24 packer: 2019/06/10 16:31:24 [INFO] (shell-local): Prepending inline script with #!/bin/sh -e | |
2019/06/10 16:31:24 ui: [1;32m==> googlecompute: Running local shell script: /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-shell011429354[0m | |
2019/06/10 16:31:24 packer: 2019/06/10 16:31:24 [INFO] (shell-local): starting local command: /bin/sh -c PACKER_BUILDER_TYPE='googlecompute' PACKER_BUILD_NAME='googlecompute' /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-shell011429354 | |
2019/06/10 16:31:24 packer: 2019/06/10 16:31:24 [INFO] (shell-local communicator): Executing local shell command [/bin/sh -c PACKER_BUILDER_TYPE='googlecompute' PACKER_BUILD_NAME='googlecompute' /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-shell011429354] | |
2019/06/10 16:31:24 ui: [0;32m googlecompute: [34mremote: Installing python requirements for GCE dynamic inventory...[0m | |
2019/06/10 16:31:25 ui: [0;32m googlecompute: [0mRequirement already satisfied: wheel in /usr/local/lib/python3.7/site-packages (0.33.1)[0m | |
2019/06/10 16:31:25 ui: [0;32m googlecompute: ~/src/ip/platform/packer/improbable.io/buildkite/ansible/buildkite-agent ~/src/ip/platform[0m | |
2019/06/10 16:31:25 ui: [0;32m googlecompute: [34mremote: Checking connectivity...[0m | |
2019/06/10 16:31:28 ui: [0;32m googlecompute: [0m[1;31m104.199.90.181 | UNREACHABLE! => {[0m[0m | |
2019/06/10 16:31:28 ui: [0;32m googlecompute: [1;31m "changed": false, [0m[0m | |
2019/06/10 16:31:28 ui: [0;32m googlecompute: [1;31m "msg": "Data could not be sent to remote host \"104.199.90.181\". Make sure this host can be reached over ssh: Warning: Permanently added '104.199.90.181' (ECDSA) to the list of known hosts.\r\nno such identity: ./private_key: No such file or directory\r\[email protected]: Permission denied (publickey,password,keyboard-interactive).\r\n", [0m[0m | |
2019/06/10 16:31:28 ui: [0;32m googlecompute: [1;31m "unreachable": true[0m[0m | |
2019/06/10 16:31:28 ui: [0;32m googlecompute: [1;31m}[0m[0m | |
2019/06/10 16:31:28 ui error: [1;31m==> googlecompute: panic: uncaught error[0m | |
2019/06/10 16:31:28 ui error: [1;31m==> googlecompute: Traceback (most recent call first):[0m | |
2019/06/10 16:31:28 ui error: [1;31m==> googlecompute: at ansible/remote.sh:19 in check_connectivity()[0m | |
2019/06/10 16:31:28 ui error: [1;31m==> googlecompute: at ansible/remote.sh:95 in main()[0m | |
2019/06/10 16:31:28 ui error: [1;31m==> googlecompute: ansible --module-name win_ping --inventory "../inventory/transient/${bake_version}.yml" "all" exited 4[0m | |
2019/06/10 16:31:28 [INFO] (telemetry) ending shell-local | |
2019/06/10 16:31:28 ui error: [1;31m==> googlecompute: Erroneous exit code 4 while executing script: /var/folders/w2/jd7cgbj92n9b3xbzkp5rft740000gn/T/packer-shell011429354 | |
==> googlecompute: | |
==> googlecompute: Please see output above for more information.[0m | |
2019/06/10 16:31:28 ui error: [1;31m==> googlecompute: Step "StepProvision" failed, aborting...[0m | |
2019/06/10 16:31:28 [INFO] (telemetry) ending googlecompute | |
2019/06/10 16:31:28 ui error: [1;31mBuild 'googlecompute' errored: unexpected EOF[0m | |
2019/06/10 16:31:28 machine readable: error-count []string{"1"} | |
2019/06/10 16:31:28 ui error: | |
==> Some builds didn't complete successfully and had errors: | |
2019/06/10 16:31:28 machine readable: googlecompute,error []string{"unexpected EOF"} | |
2019/06/10 16:31:28 ui error: --> googlecompute: unexpected EOF | |
2019/06/10 16:31:28 ui: | |
==> Builds finished but no artifacts were created. | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 [INFO] (telemetry) Finalizing. | |
2019/06/10 16:31:28 waiting for all plugin processes to complete... | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited | |
2019/06/10 16:31:28 /usr/local/bin/packer: plugin process exited |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"metadata": { | |
"imp-bootstrap-base64": "{{user `imp_bootstrap_base64`}}", | |
"imp-public-key-base64": "{{user `imp_public_key_base64`}}", | |
"imp-sshd-config-base64": "{{user `imp_sshd_config_base64`}}", | |
"windows-startup-script-ps1": "Get-GceMetaData -Path instance/attributes/imp-bootstrap-base64 > c:/windows/temp/bootstrap.b64 ; certutil -decode c:/windows/temp/bootstrap.b64 c:/windows/temp/bootstrap.ps1 ; c:/windows/temp/bootstrap.ps1 -username packer_user" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment