76 lines
2.1 KiB
Go
76 lines
2.1 KiB
Go
package chef
|
|
|
|
import (
|
|
"fmt"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/hashicorp/terraform/communicator"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
const installScript = `
|
|
$winver = [System.Environment]::OSVersion.Version | %% {"{0}.{1}" -f $_.Major,$_.Minor}
|
|
|
|
switch ($winver)
|
|
{
|
|
"6.0" {$machine_os = "2008"}
|
|
"6.1" {$machine_os = "2008r2"}
|
|
"6.2" {$machine_os = "2012"}
|
|
"6.3" {$machine_os = "2012"}
|
|
default {$machine_os = "2008r2"}
|
|
}
|
|
|
|
if ([System.IntPtr]::Size -eq 4) {$machine_arch = "i686"} else {$machine_arch = "x86_64"}
|
|
|
|
$url = "http://www.chef.io/chef/download?p=windows&pv=$machine_os&m=$machine_arch&v=%s"
|
|
$dest = [System.IO.Path]::GetTempFileName()
|
|
$dest = [System.IO.Path]::ChangeExtension($dest, ".msi")
|
|
$downloader = New-Object System.Net.WebClient
|
|
|
|
$http_proxy = '%s'
|
|
if ($http_proxy -ne '') {
|
|
$no_proxy = '%s'
|
|
if ($no_proxy -eq ''){
|
|
$no_proxy = "127.0.0.1"
|
|
}
|
|
|
|
$proxy = New-Object System.Net.WebProxy($http_proxy, $true, ,$no_proxy.Split(','))
|
|
$downloader.proxy = $proxy
|
|
}
|
|
|
|
Write-Host 'Downloading Chef Client...'
|
|
$downloader.DownloadFile($url, $dest)
|
|
|
|
Write-Host 'Installing Chef Client...'
|
|
Start-Process -FilePath msiexec -ArgumentList /qn, /i, $dest -Wait
|
|
`
|
|
|
|
func (p *Provisioner) winrmInstallChefClient(
|
|
o terraform.UIOutput,
|
|
comm communicator.Communicator) error {
|
|
script := path.Join(path.Dir(comm.ScriptPath()), "ChefClient.ps1")
|
|
content := fmt.Sprintf(installScript, p.Version, p.HTTPProxy, strings.Join(p.NOProxy, ","))
|
|
|
|
// Copy the script to the new instance
|
|
if err := comm.UploadScript(script, strings.NewReader(content)); err != nil {
|
|
return fmt.Errorf("Uploading client.rb failed: %v", err)
|
|
}
|
|
|
|
// Execute the script to install Chef Client
|
|
installCmd := fmt.Sprintf("powershell -NoProfile -ExecutionPolicy Bypass -File %s", script)
|
|
return p.runCommand(o, comm, installCmd)
|
|
}
|
|
|
|
func (p *Provisioner) winrmCreateConfigFiles(
|
|
o terraform.UIOutput,
|
|
comm communicator.Communicator) error {
|
|
// Make sure the config directory exists
|
|
cmd := fmt.Sprintf("if not exist %q mkdir %q", windowsConfDir, windowsConfDir)
|
|
if err := p.runCommand(o, comm, cmd); err != nil {
|
|
return err
|
|
}
|
|
|
|
return p.deployConfigFiles(o, comm, windowsConfDir)
|
|
}
|