Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
94f385ec
Commit
94f385ec
authored
Sep 03, 2014
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builder/virtualbox: error if guest additions URL can't be read [GH-1439]
parent
01abbc44
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
CHANGELOG.md
CHANGELOG.md
+2
-0
builder/virtualbox/common/step_download_guest_additions.go
builder/virtualbox/common/step_download_guest_additions.go
+7
-0
No files found.
CHANGELOG.md
View file @
94f385ec
...
...
@@ -34,6 +34,8 @@ BUG FIXES:
*
builder/qemu: If headless, sdl display won't be used. [GH-1395]
*
builder/qemu: Use
`512M`
as
`-m`
default. [GH-1444]
*
builder/virtualbox/all: Seed RNG to avoid same ports. [GH-1386]
*
builder/virtualbox/all: Better error if guest additions URL couldn't be
detected. [GH-1439]
*
builder/vmware/all:
`ssh_host`
accepts templates. [GH-1396]
*
builder/vmware/all: Don't remount floppy in VMX post step. [GH-1239]
*
builder/vmware/vmx: Do not re-add floppy disk files to VMX [GH-1361]
...
...
builder/virtualbox/common/step_download_guest_additions.go
View file @
94f385ec
...
...
@@ -91,6 +91,13 @@ func (s *StepDownloadGuestAdditions) Run(state multistep.StateBag) multistep.Ste
additionsName
)
}
}
if
url
==
""
{
err
:=
fmt
.
Errorf
(
"Couldn't detect guest additions URL.
\n
"
+
"Please specify `guest_additions_url` manually."
)
state
.
Put
(
"error"
,
err
)
ui
.
Error
(
err
.
Error
())
return
multi
.
ActionHalt
}
if
checksumType
!=
"none"
{
if
s
.
GuestAdditionsSHA256
!=
""
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment