mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-09 00:32:06 -04:00
Remove customized require behaviors and modify the bin executable to check for missing tools that Vagrant expects to exist when running outside of an installer.
50 lines
1.5 KiB
Ruby
50 lines
1.5 KiB
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require "pathname"
|
|
require "tmpdir"
|
|
|
|
require "vagrant/util/safe_exec"
|
|
|
|
module VagrantPlugins
|
|
module HostWindows
|
|
module Cap
|
|
class PS
|
|
def self.ps_client(env, ps_info)
|
|
logger = Log4r::Logger.new("vagrant::hosts::windows")
|
|
|
|
command = <<-EOS
|
|
$plain_password = "#{ps_info[:password]}"
|
|
$username = "#{ps_info[:username]}"
|
|
$port = "#{ps_info[:port]}"
|
|
$hostname = "#{ps_info[:host]}"
|
|
$password = ConvertTo-SecureString $plain_password -asplaintext -force
|
|
$creds = New-Object System.Management.Automation.PSCredential ("$hostname\\$username", $password)
|
|
function prompt { kill $PID }
|
|
Enter-PSSession -ComputerName $hostname -Credential $creds -Port $port
|
|
EOS
|
|
|
|
logger.debug("Starting remote powershell with command:\n#{command}")
|
|
|
|
args = ["-NoProfile"]
|
|
args << "-ExecutionPolicy"
|
|
args << "Bypass"
|
|
args << "-NoExit"
|
|
args << "-EncodedCommand"
|
|
args << encoded(command)
|
|
if ps_info[:extra_args]
|
|
args << ps_info[:extra_args]
|
|
end
|
|
|
|
# Launch it
|
|
Vagrant::Util::SafeExec.exec("powershell", *args)
|
|
end
|
|
|
|
def self.encoded(script)
|
|
encoded_script = script.encode('UTF-16LE', 'UTF-8')
|
|
Base64.strict_encode64(encoded_script)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|