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
721095f4
Commit
721095f4
authored
Jan 17, 2015
by
Ross Smith II
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1844 from Banno/master
SCSI Support in virtualbox driver
parents
8f5664d2
7d1b95c9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
42 additions
and
3 deletions
+42
-3
builder/virtualbox/common/driver.go
builder/virtualbox/common/driver.go
+3
-0
builder/virtualbox/common/driver_4_2.go
builder/virtualbox/common/driver_4_2.go
+12
-0
builder/virtualbox/common/driver_mock.go
builder/virtualbox/common/driver_mock.go
+10
-0
builder/virtualbox/iso/builder.go
builder/virtualbox/iso/builder.go
+2
-2
builder/virtualbox/iso/step_create_disk.go
builder/virtualbox/iso/step_create_disk.go
+13
-0
website/source/docs/builders/virtualbox-iso.html.markdown
website/source/docs/builders/virtualbox-iso.html.markdown
+2
-1
No files found.
builder/virtualbox/common/driver.go
View file @
721095f4
...
@@ -19,6 +19,9 @@ type Driver interface {
...
@@ -19,6 +19,9 @@ type Driver interface {
// Create a SATA controller.
// Create a SATA controller.
CreateSATAController
(
vm
string
,
controller
string
)
error
CreateSATAController
(
vm
string
,
controller
string
)
error
// Create a SCSI controller.
CreateSCSIController
(
vm
string
,
controller
string
)
error
// Delete a VM by name
// Delete a VM by name
Delete
(
string
)
error
Delete
(
string
)
error
...
...
builder/virtualbox/common/driver_4_2.go
View file @
721095f4
...
@@ -36,6 +36,18 @@ func (d *VBox42Driver) CreateSATAController(vmName string, name string) error {
...
@@ -36,6 +36,18 @@ func (d *VBox42Driver) CreateSATAController(vmName string, name string) error {
return
d
.
VBoxManage
(
command
...
)
return
d
.
VBoxManage
(
command
...
)
}
}
func
(
d
*
VBox42Driver
)
CreateSCSIController
(
vmName
string
,
name
string
)
error
{
command
:=
[]
string
{
"storagectl"
,
vmName
,
"--name"
,
name
,
"--add"
,
"scsi"
,
"--controller"
,
"LSILogic"
,
}
return
d
.
VBoxManage
(
command
...
)
}
func
(
d
*
VBox42Driver
)
Delete
(
name
string
)
error
{
func
(
d
*
VBox42Driver
)
Delete
(
name
string
)
error
{
return
d
.
VBoxManage
(
"unregistervm"
,
name
,
"--delete"
)
return
d
.
VBoxManage
(
"unregistervm"
,
name
,
"--delete"
)
}
}
...
...
builder/virtualbox/common/driver_mock.go
View file @
721095f4
...
@@ -9,6 +9,10 @@ type DriverMock struct {
...
@@ -9,6 +9,10 @@ type DriverMock struct {
CreateSATAControllerController
string
CreateSATAControllerController
string
CreateSATAControllerErr
error
CreateSATAControllerErr
error
CreateSCSIControllerVM
string
CreateSCSIControllerController
string
CreateSCSIControllerErr
error
DeleteCalled
bool
DeleteCalled
bool
DeleteName
string
DeleteName
string
DeleteErr
error
DeleteErr
error
...
@@ -49,6 +53,12 @@ func (d *DriverMock) CreateSATAController(vm string, controller string) error {
...
@@ -49,6 +53,12 @@ func (d *DriverMock) CreateSATAController(vm string, controller string) error {
return
d
.
CreateSATAControllerErr
return
d
.
CreateSATAControllerErr
}
}
func
(
d
*
DriverMock
)
CreateSCSIController
(
vm
string
,
controller
string
)
error
{
d
.
CreateSCSIControllerVM
=
vm
d
.
CreateSCSIControllerController
=
vm
return
d
.
CreateSCSIControllerErr
}
func
(
d
*
DriverMock
)
Delete
(
name
string
)
error
{
func
(
d
*
DriverMock
)
Delete
(
name
string
)
error
{
d
.
DeleteCalled
=
true
d
.
DeleteCalled
=
true
d
.
DeleteName
=
name
d
.
DeleteName
=
name
...
...
builder/virtualbox/iso/builder.go
View file @
721095f4
...
@@ -158,9 +158,9 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
...
@@ -158,9 +158,9 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
}
}
}
}
if
b
.
config
.
HardDriveInterface
!=
"ide"
&&
b
.
config
.
HardDriveInterface
!=
"sata"
{
if
b
.
config
.
HardDriveInterface
!=
"ide"
&&
b
.
config
.
HardDriveInterface
!=
"sata"
&&
b
.
config
.
HardDriveInterface
!=
"scsi"
{
errs
=
packer
.
MultiErrorAppend
(
errs
=
packer
.
MultiErrorAppend
(
errs
,
errors
.
New
(
"hard_drive_interface can only be ide
or sata
"
))
errs
,
errors
.
New
(
"hard_drive_interface can only be ide
, sata, or scsi
"
))
}
}
if
b
.
config
.
ISOChecksumType
==
""
{
if
b
.
config
.
ISOChecksumType
==
""
{
...
...
builder/virtualbox/iso/step_create_disk.go
View file @
721095f4
...
@@ -63,12 +63,25 @@ func (s *stepCreateDisk) Run(state multistep.StateBag) multistep.StepAction {
...
@@ -63,12 +63,25 @@ func (s *stepCreateDisk) Run(state multistep.StateBag) multistep.StepAction {
}
}
}
}
if
config
.
HardDriveInterface
==
"scsi"
{
if
err
:=
driver
.
CreateSCSIController
(
vmName
,
"SCSI Controller"
);
err
!=
nil
{
err
:=
fmt
.
Errorf
(
"Error creating disk controller: %s"
,
err
)
state
.
Put
(
"error"
,
err
)
ui
.
Error
(
err
.
Error
())
return
multistep
.
ActionHalt
}
}
// Attach the disk to the controller
// Attach the disk to the controller
controllerName
:=
"IDE Controller"
controllerName
:=
"IDE Controller"
if
config
.
HardDriveInterface
==
"sata"
{
if
config
.
HardDriveInterface
==
"sata"
{
controllerName
=
"SATA Controller"
controllerName
=
"SATA Controller"
}
}
if
config
.
HardDriveInterface
==
"scsi"
{
controllerName
=
"SCSI Controller"
}
command
=
[]
string
{
command
=
[]
string
{
"storageattach"
,
vmName
,
"storageattach"
,
vmName
,
"--storagectl"
,
controllerName
,
"--storagectl"
,
controllerName
,
...
...
website/source/docs/builders/virtualbox-iso.html.markdown
View file @
721095f4
...
@@ -136,7 +136,8 @@ each category, the available options are alphabetized and described.
...
@@ -136,7 +136,8 @@ each category, the available options are alphabetized and described.
*
`hard_drive_interface`
(string) - The type of controller that the primary
*
`hard_drive_interface`
(string) - The type of controller that the primary
hard drive is attached to, defaults to "ide". When set to "sata", the
hard drive is attached to, defaults to "ide". When set to "sata", the
drive is attached to an AHCI SATA controller.
drive is attached to an AHCI SATA controller. When set to "scsi", the drive
is attached to an LsiLogic SCSI controller.
*
`headless`
(boolean) - Packer defaults to building VirtualBox
*
`headless`
(boolean) - Packer defaults to building VirtualBox
virtual machines by launching a GUI that shows the console of the
virtual machines by launching a GUI that shows the console of the
...
...
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