update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2015-11-18 12:54:42 -08:00
parent 34dc9e237e
commit 10c53dfb4b
2 changed files with 5 additions and 0 deletions

View File

@ -42,6 +42,8 @@ BUG FIXES:
in ".1" [GH-6150]
- commands/up: the `--provision-with` flag works with provisioner names [GH-5981]
- communicator/winrm: respect `boot_timeout` setting [GH-6229]
- communicator/winrm: execute scheduled tasks immediately on Windows XP
since elevation isn't required [GH-6195]
- guests/debian: graceful shutdown works properly with newer releases [GH-5986]
- guests/suse: DHCP network interfaces properly configured [GH-6502]
- provisioners/ansible: use quotes for the `ansible_ssh_private_key_file`

View File

@ -1,5 +1,8 @@
param([String]$username, [String]$password, [String]$encoded_command)
# Try to get the Schedule.Service object. If it fails, we are probably
# on an older version of Windows. On old versions, we can just execute
# directly since priv. escalation isn't a thing.
$schedule = $null
Try {
$schedule = New-Object -ComObject "Schedule.Service"